//ÄíÅ°°ªÀ» °¡Á®¿À´Â ÇÔ¼ö
function popup_Window(ref,win_name,win_width,win_height,window_left,window_top) {
//		 popup_Window(ÁÖ¼Ò,ÆË¾÷Ã¢ÀÌ¸§,Ã¢ÀÇwidthÅ©±â,Ã¢ÀÇheightÅ©±â,Ã¢ÀÇleftÀ§Ä¡,Ã¢ÀÇtopÀ§Ä¡)
   window.open(ref,win_name,'width='+win_width+',height='+win_height+',status=no,scrollbars=no,top=' + window_top + ',left=' + window_left + '');
}

function getCookie(name) {
	var from_idx = document.cookie.indexOf(name+'=');
	if (from_idx != -1) { 
		from_idx += name.length + 1
		to_idx = document.cookie.indexOf(';', from_idx) 

		if (to_idx == -1) {
			to_idx = document.cookie.length
		}
		return unescape(document.cookie.substring(from_idx, to_idx))
	}
}

//getCookie ÇÔ¼ö¸¦ È£ÃâÇÏ¿© ÄíÅ°°ªÀ» °¡Á®¿Â´Ù. 



var firstCookie = getCookie("popup");		



//ÄíÅ°°ªÀÌ true°¡ ¾Æ´Ò °æ¿ì¿¡¸¸ »õ Ã¢À» ¶ç¿î´Ù.
if ( !firstCookie ) {							
		popup_Window("http://www.pluscareer.net/pop_up/pop_up.htm","popup","407","437","0","0");
}




