// ¾ÆÀÌÇÁ·¡ÀÓ function iframe_autoresize(arg) { arg.height = eval(arg.name+".document.body.scrollHeight"); } // °øÁö Æ˾÷âÀ» ¶ç¿î´Ù. function popUpWindow(htmlvalue,names, width, Height, top, left, scrollbar,resizable) { if(top == "") top='0'; if(left == "") left='0'; if(scrollbar == "") scrollbar='no'; if(resizable == "") resizable='no'; window.open (htmlvalue, names, "scrollbars="+ scrollbar+", resizable="+ resizable+", width=" + width + ", height=" + Height + ",top=" + top + ",left=" + left + ", toolbar=no, location=no, directories=no, status=no, copyhistory=no, menubar=no"); } // Get ¹æ½ÄÀ¸·Î »çÀÌÆ®¸¦ À̵¿ ½ÃÄÑÁØ´Ù. function goURL(gURL,message) { if(message != "") { if(confirm(message)) { location.href=gURL; return; } else { return; } } document.location=gURL; } // Post ¹æ½ÄÀ¸·Î »çÀÌÆ®¸¦ À̵¿ ½ÃÄÑÁØ´Ù. function goURLPost(gURL,message) { if(message != "") { if(confirm(message)) { postFormAction(gURL); return; } else { return; } } postFormAction(gURL); } // Get ¹æ½ÄÀÇ URL À» ºÐ¼®ÇÏ¿© Post ¹æ½ÄÀÇ Form À¸·Î Àü¼ÛÇÑ´Ù. function postFormAction(gURL) { tempgURL_array = gURL.split("?"); // »çÀÌÆ® URL °ú ÆĶó¸ÞŸº¯¼ö¸¦ ºÐ¸®ÇÑ´Ù. tmpURL = tempgURL_array[0]; // »çÀÌÆ® URL tmpPara = tempgURL_array[1]; // ÆĶó¸ÞŸº¯¼ö writeform = ""; writeform = writeform + "
\n"; if(tmpPara != "" && tmpPara != null) { tmpPara_array = tmpPara.split("&"); // ÆĶó¸ÞŸº¯¼ö ¹è¿­ for(i=0;tmpPara_array.length > i;i++) { para = tmpPara_array[i]; para_array = para.split("="); // ÆĶó¸ÞŸÀÇ À̸§°ú °ªÀ» ³ª´«´Ù. writeform = writeform + "\n"; } } writeform = writeform + "
\n"; writeform = writeform + "\n"; document.write(writeform); } /* À̹ÌÁö¸¦ Æ˾÷À¸·Î ¶Ù¿ì°í ⺸´Ù À̹ÌÁö°¡ Ŭ°æ¿ì µå·¡±×ÇÏ¿© º¸±â°¡ °¡´ÉÇÏ´Ù. imgpath : À̹ÌÁö °æ·Î wintitle : À̹ÌÁö Æ˾÷âÀÇ Å¸ÀÌƲ À̸§ */ function popupImageView(imgpath,wintitle) { // À̹ÌÁö Á¤º¸¸¦ °¡Á®¿À±âÀ§ÇÑ À̹ÌÁö°´Ã¼ »ý¼º var imageobj = new Image(); imageobj.src = imgpath; img_width = imageobj.width; img_height = imageobj.height; winhtml = ""; winhtml += ""; winhtml += "" + wintitle + ""; winhtml += "