헤드 테그 사이에 넣어주기
<script language=javascript>
<!--
function setCookie( name, value, expiredays )
{
var todayDate = new Date();
todayDate.setDate( todayDate.getDate() + expiredays );
document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";"
}
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 "";
}
if (getCookie("p_1") != "done")
{
wint1=window.open('http://naver.com','chk_1','width=400,height=450,left=20,top=80,marginwidth=0,marginheight=0,resizable=0,scrollbars=0');
wint1.opener = self;
}
//-->
</script>
'Computer' 카테고리의 다른 글
Apache Tomcat connector mod_jk(아파치 + 톰캣 연동) 2부 (1) | 2011.02.18 |
---|---|
팝업 테그 2 (1) | 2010.12.02 |
토렌트 파일 업로드 하기 (0) | 2010.11.17 |
토렌토 설치법 (0) | 2010.11.17 |
웹서버, 웹클라이언트, 서버 사이드, 클라이언트 사이드란 무엇인가? (0) | 2009.04.28 |