//Æ˾÷âÀ» ¿©´Â JS ÇÔ¼öµé(°ü¸®ÀÚÆäÀÌÁö¿¡¼­µµ ¾²ÀÓ) function openPopupWindow(theURL,winName,features) { //v2.0 window.open(theURL,winName,features); } function openPopup(theUrl, winName, bResizable, bScrollbar, winWidth, winHeight, topPos, leftPos) { //Æ˾÷â ¿©´Â ÇÔ¼ö //URL, âÀ̸§, RESIZE À¯¹«(yes or no), ½ºÅ©·Ñ¹Ù À¯¹«(yes or no), width, height, top ÁÂÇ¥, left ÁÂÇ¥¸¦ ÀԷ¹޴´Ù. //³ª¸ÓÁö ¼Ó¼ºÀº ¸ðµÎ no window.open(theUrl, winName, "toolbar=no,location=no,status=no,manubar=no,resizable="+bResizable +",scrollbars=" + bScrollbar + ",width="+ winWidth +",height=" + winHeight + ",top=" + topPos +",left=" + leftPos); } function openPopupFull(theUrl,winName,features) { //Æ˾÷â ¿©´Â ÇÔ¼ö //openPopup ÇÔ¼ö¿Í ºñ½ÁÇÏÁö¸¸, features¸¦ ¿øÇϴ´ë·Î ÀûÀ» ¼ö ÀÖ´Ù. window.open(theUrl,winName,features); } function openZipCode(ele_zip1, ele_zip2, ele_addr1) { //¿ìÆí¹øÈ£ °Ë»ö âÀ» ¶ç¿ì´Â ÇÔ¼ö. ¿ìÆí¹øÈ£ ¾ÕµÚ ÀÚ¸®, ÁÖ¼Ò ¾ÕÀÚ¸®¿¡´Â °ªÀÌ µé¾î°¡°í, ÁÖ¼Ò µÞÀÚ¸®¿¡´Â focus°¡ °£´Ù. openPopup("/common/pop_zipcode.html?zipCode1="+ele_zip1+"&zipCode2="+ele_zip2+"&address1="+ele_addr1, "wFindZipCode", 1, 1, 501, 330, 100, 100); } // Æ˾÷âÀ» ¶ç¿ï¶§ Á¤ Áß¾Ó¿¡ °¡¿îµ¥ Æ˾÷À» ¶ç¿ï¶§ »ç¿ë (ÀÌ Ã¢ÀÌ ¶ß¸é ¹è°æÀÇ opener À©µµ¿ì´Â Ŭ¸¯ÀÌ µÇÁö ¾Ê½À´Ï´Ù.) function openModalDialog( p_url, p_width, p_height, p_hide ) { if (p_hide == null) p_hide = 0; rv = window.showModalDialog( p_url , window, "dialogWidth:" + parseInt(p_width) + "px;" +"dialogHeight:" + parseInt(p_height) + "px;" +"status:0;center:1;help:0;" +"dialogHide:" + parseInt(p_hide)); }