function getCookie( 이름 )
{
var start = document.cookie.indexOf( 이름 "=" );
var len = 시작 이름.길이 1;
if ( ( !start ) && ( name != document.cookie.substring( 0, name.length ) ) ) {
return null;
}
if ( start == -1 ) 반환 null;
var end = document.cookie.indexOf( ';', len );
if ( end == -1 ) end = document.cookie.length;
return unescape( document.cookie.substring( len, end ) );
}
// ------------------------- -------------- //
function setCookie( 이름, 값, 만료, 경로, 도메인, 보안 ) {
var today = new Date();
today.setTime( today.getTime() );
if (만료) {
만료 = 만료 * 1000 * 60 * 60 * 24;
}
varexpires_date = new Date( today.getTime() (expires) );
document.cookie = name '=' escape( value )
( ( 만료 ) ? ';expires='expires_date.toGMTString() : '' ) //expires.toGMTString()
( ( 경로 ) ? ';path=' 경로 : '' )
( ( 도메인 ) ? ';domain=' 도메인 : '' )
( ( 보안 ) ? ';보안' : '' );
}
// ------------------------- -------------- //
function deleteCookie( 이름, 경로, 도메인 )
{
if ( getCookie( 이름 ) ) document.cookie = 이름 '='
( ( 경로 ) ? ';path=' 경로 : '')
( ( 도메인 ) ? ';domain=' 도메인 : '' )
';expires=1970년 1월 1일 목요일 00:00:01 GMT';
}