function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function WinOpen(URL, WIDTH, HEIGHT) {
	window.open(URL, '_Win', 'resizable=1,status=0,width=' + WIDTH + ',height=' + HEIGHT);
}
function Open_scroll(URL, WIDTH, HEIGHT) {
	window.open(URL, '_scroll', 'resizable=1,scrollbars=yes,status=0,width=' + WIDTH + ',height=' + HEIGHT);
}
// ³»¿ë ÇÁ¸°Æ® ÇÏ±â
function gs_print_win() {
memo_div=document.all.main_memo;
print_win=window.open('about:blank','win','left=10000, top=10000,width=900,height=672,scrollbars=yes,resizable');
print_win.document.open();
print_win.document.write("<html><head><title>PRINT</title>");
print_win.document.write("<link href='/css/style.css' rel='stylesheet' type='text/css'>");
print_win.document.write("<link href='/css/base.css' rel='stylesheet' type='text/css'>");
print_win.document.write("<link href='/css/layout.css' rel='stylesheet' type='text/css'>");
print_win.document.write("<style>body,td{font-size:12px; text-decoration: none}");
print_win.document.write("</style></head>");
print_win.document.write("<script language=javascript>function lf_onstart(){window.print();window.close();return;}</script>");
print_win.document.write("<body bgcolor=FFFFFF onload='lf_onstart();'><table><tr><td width=200 align=left></td>");
print_win.document.write("<td width=450>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>");
print_win.document.write("<td align=right></td></tr></table>");
print_win.document.write(memo_div.innerHTML);
print_win.document.write("</body></html>");
print_win.document.close();
}
