function open_window(TITLE,URL, WIDTH, HEIGHT) { windowprops = "left=50,top=50,width=" + WIDTH + ",height=" + HEIGHT + ",resizable=yes,scrollbars=yes"; window.open(URL, TITLE , windowprops); } function open_window2(TITLE,URL, WIDTH, HEIGHT) { windowprops = "left=50,top=50,width=" + WIDTH + ",height=" + HEIGHT + ",resizable=yes,scrollbars=no"; window.open(URL, TITLE , windowprops); } function deleteConfirm(msg, url){ if(confirm(msg)) document.location.replace( url ); } function checkConfirm(msg){ if(confirm(msg)) { return true; } else { return false; } } function erorrMsg(msg){ alert(msg); } function postChk(ref) { window.open( ref , "win1",'scrollbars=yes,width=500,height=400'); } function Directurl(tourl){ if (tourl!="") document.location.href = tourl } function gourl(url){ window.open("/gourl.php?url="+url); } //tab À̺¥Æ® var curid=0; function bartab(id,pagenum,start,max){ tabid = "tab" + id; txtid = "txt" + id; txtid2 = "txt0"; tabsrc = "img/" + pagenum + "_tab0" + id + "s.gif"; for(var i = start; i<=max; i++){ hidtabid = "tab" + i; hidtxtid = "txt" + i; document.all[hidtabid].src= "img/" + pagenum + "_tab0" + i + ".gif"; document.all[hidtxtid].style.display='none'; } document.all[tabid].src= tabsrc; document.all[txtid].style.display='block'; document.all[txtid2].style.display='none'; curid=id; } function bartab2(id,pagenum,start,max){ tabid = "tab" + id; txtid = "txt" + id; tabsrc = "img/" + pagenum + "_tab0" + id + "s.gif"; for(var i = start; i<=max; i++){ hidtabid = "tab" + i; hidtxtid = "txt" + i; document.all[hidtabid].src= "img/" + pagenum + "_tab0" + i + ".gif"; document.all[hidtxtid].style.display='none'; } document.all[tabid].src= tabsrc; document.all[txtid].style.display='block'; curid=id; }