이소스를 크기랑 팝업창 파일 이름을 수정해서
메인 또는 팝업창 열려는 파일 소스속 </html> 위~에 넣으세요
<script language="JavaScript">
<!--
function notice_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 "";
}
if ( notice_getCookie( "Notice" ) != "done" )
{
window.open('팝업창 파일주소','','left=5,top=5,width=가로크기,height=세로크기');
}
// -->
</script>
2)
이 소스는 팝업창 소스입니다...이소스로 팝업창을 꾸미세요
<head>
<script language="JavaScript">
<!--
function notice_setCookie( name, value, expiredays )
{
var todayDate = new Date();
todayDate.setDate( todayDate.getDate() + expiredays );
document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";"
}
function notice_closeWin()
{
if ( document.forms[0].Notice.checked )
notice_setCookie( "Notice", "done" , 1); // 1=하룻동안 공지창 열지 않음
self.close();
}
function na_call(str){ eval(str);}
//-->
</script>
</head>
<body>
팝업내용 또는 이미지 소스
<form name="form1">
<input type="checkbox" name="Notice" OnClick="notice_closeWin()">오늘은 이창을 다시 열지않음
</form>
</body>