function main_popup(url, target, Pproperty) {
	// ÆË¾÷Á¾·áÀÏ
	var yy = "2012";
	var mm = "01";
	var dd = "03";

	var strNowDt = new Date(); 
	var strEndDt = new Date(yy,mm-1,dd);

	if (strNowDt<=strEndDt)
	{
		window.open(url, target, Pproperty);
	}
}

//ÄíÅ° ÀúÀå
function SetCookie(cName, cValue, expDay){
	var strExpires;
	if (expDay>0){
		var todayDate = new Date();
		todayDate.setDate( todayDate.getDate() + expDay);
		strExpires = " expires=" + todayDate.toGMTString() + ";"
	}
	document.cookie = cName+"="+cValue+"; domain="+document.domain+"; path=/;"+strExpires;
//	document.cookie = cName+"="+cValue+"; domain=.bar24.kr; path=/;"+strExpires;
}


// Retrieve the value of the cookie with the specified name.
function GetCookie(sName){
	// cookies are separated by semicolons
	var aCookie = document.cookie.split("; ");
	for (var i=0; i < aCookie.length; i++)
	{
	  // a name/value pair (a crumb) is separated by an equal sign
	  var aCrumb = aCookie[i].split("=");
	  if (sName == aCrumb[0])
	    return unescape(aCrumb[1]);
	}

	// a cookie with the requested name does not exist
	return null;
}



    function PopupAutoResize(minHeight)
	{
        window.resizeTo(100, 100);
        var thisX = parseInt(document.body.scrollWidth);
        var thisY = parseInt(document.body.scrollHeight);
        var maxThisX = screen.width - 50;
        var maxThisY = screen.height - 50;
        var marginY = 0;
		var PrintY;
        //alert(thisX + "===" + thisY);
        //alert("ÀÓ½Ã ºê¶ó¿ìÀú È®ÀÎ : " + navigator.userAgent);
        // ºê¶ó¿ìÀúº° ³ôÀÌ Á¶Àý.
        if (navigator.userAgent.indexOf("MSIE 6") > 0) marginY = 60;        // IE 6.x
        else if(navigator.userAgent.indexOf("MSIE 7") > 0) marginY = 80;    // IE 7.x
        else if(navigator.userAgent.indexOf("Firefox") > 0) marginY = 50;   // FF
        else if(navigator.userAgent.indexOf("Opera") > 0) marginY = 30;     // Opera
        else if(navigator.userAgent.indexOf("Netscape") > 0) marginY = -2;  // Netscape

        else if(navigator.userAgent.indexOf("Chrome") > 0) marginY = 20;  // Chrome

		if (thisX > maxThisX) {
            window.document.body.scroll = "yes";
            thisX = maxThisX;
        }
        if (thisY > maxThisY - marginY) {
            window.document.body.scroll = "yes";
            thisX += 19;
            thisY = maxThisY - marginY;
        }
		PrintY =thisY+marginY
		if(PrintY <minHeight){
			PrintY = minHeight
		}
        window.resizeTo(thisX+10,PrintY );

	}
