<!--
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)
		{
			endOfCookie = document.cookie.indexOf(";",y);
			if(endOfCookie == -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(cookiename1, url1, frame1, width1, height1, top1, left1)
{
	if(getCookie(cookiename1)!="done"){
		window.open(url1, frame1,"width=" + width1 + ", height=" + height1 + ", top=" + top1 + ", left=" + left1 + ", resizable=0, scrollbars=no");
	}	
}

function pop_sociology()

{
	Popup("open", "../popup/open.htm", "open", "400", "437", "5", "5"); // ÄíÅ°ÀÌ¸§, ÁÖ¼Ò, ÇÁ·¹ÀÓ, ³Êºñ, ³ôÀÌ, Å¾, ·¹ÇÁÆ®ÀÇ ÀÎ¼ö¸¦ ¹Þ´Â´Ù.
	//Ãß°¡
}
//-->
