//-------------------------------------------------------
// Help window open
//-------------------------------------------------------
function HelpOpen(url, width_len, height_len){
	window.open("./view/help.jsp?content=" + url, "help",
				"width=" + width_len + ",height=" + height_len + "scrollbars=0");
}
//-------------------------------------------------------
// Help window closed
//-------------------------------------------------------
function HelpClose(){
	window.close();
}
