<script language="JavaScript"> <!-- function getCookie( name ) { var nameOfCookie = name + "="; var x = 0; while ( x <= document.cookie.length ) { var y = (x+nameOfCookie.length); if ( document.cookie.substring( x, y ) == nameOfCookie ) { if ( (endOfCookie=document.cookie.indexOf( ";", y )) == -1 ) endOfCookie = document.cookie.length; return unescape( document.cookie.substring( y, endOfCookie ) ); } x = document.cookie.indexOf( " ", x ) + 1; if ( x == 0 ) break; } return ""; } function Popup_Wnd(){ if(getCookie("Notice") != "no"){ var child = null; child = window.open("http://팝업창 주소", "Notice", "width=500,height=350,notoolbars,resizable=no,scrollbars=auto"); child.focus(); } return; } Popup_Wnd(); --> </script> -------------------------------- 메인페이지가 열릴 때 뜨는 팝업창에 넣을 소스
<script language="JavaScript"> <!-- function go(where){ window.opener.location.href=where window.close() } function setCookie( name, value, expiredays ) { var todayDate = new Date(); todayDate.setDate( todayDate.getDate() + expiredays ); document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";" } function closeWin() { if ( document.forms[0].Notice.checked ) setCookie( "Notice", "no" , 1); self.close(); } // --> </script>