// JavaScript Document
function getCookie(name) 
{ 
	var nameOfCookie = name + "="; 
	var x = 0; 
	//alert(document.cookie);
	while (x <= document.cookie.length) 
	{ 
		var y = (x+nameOfCookie.length);
		//alert(x +","+ y);alert(document.cookie.substring( x, y ));
		if(document.cookie.substring(x,y) == nameOfCookie){ 
			if((endOfCookie=document.cookie.indexOf( ";", y )) == -1){
				//alert(endOfCookie);
				endOfCookie = document.cookie.length;
			}
			//alert(unescape( document.cookie.substring( y, endOfCookie ) ));
			return unescape(document.cookie.substring(y,endOfCookie));
		} 
		x = document.cookie.indexOf(" ",x) + 1; 
		if(x == 0) 
			break; 
	} 
	return ""; 
}
//ÆË¾÷Ã¢2




//ÆË¾÷Ã¢3

if(getCookie('notice4') != 'done') 
{ 
	var str_url = 'popup/pop_20090316.html';	//ÆË¾÷Ã¢ ÆÄÀÏ¸í
	window.open(str_url,'notice4','width=369,height=299,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left=0,top=0'); 
}