
////ÆË¾÷ 1

 var ck1 = ReadCookie( 'open_popup2' );
 if( ck1 != 'no' ){
   var pop_status; 
	 pop_status = window.open("/PopupNews/201202_recruit/Pop_1.asp","open_popup2","width=300,height=900,status=no,resizable=no, toolbar=no,menubar=no,scrollbars=yes, titlebar=no");
	 pop_status.focus();
                  }


//// 20090918 ÆË¾÷ 2

//  var ck2 = ReadCookie( 'open_popup2' );

//	if( ck2 != 'no' ){
//		window.open("/PopupNews/200909_gongmae/Pop_1.asp","open_popup2","width=300,height=350,status=no,resizable=no, toolbar=no,menubar=no,scrollbars=yes, titlebar=no");
//	}	


		
	function ReadCookie(name)
	{
		var label = name + "=" ;
		var labelLen = label.length ;
		var cLen = document.cookie.length
		var i = 0
		while (i < cLen){
			var j = i + labelLen
			if (document.cookie.substring(i,j) == label) {
				var cEnd = document.cookie.indexOf(";",j)
				if (cEnd == -1){
					cEnd = document.cookie.length
						}
				return unescape(document.cookie.substring(j,cEnd))
				}
			i++
		}
		return ""
	}

