// µ÷ÓÃ·½Ê½: <BODY onLoad="javascript:popUp('http://localhost/popcontent.htm')">

function openWin(URL)
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=600,height=400,left = 212,top = 134');");
}

function getCookie(Name)
{
	var search = Name + "="
	var returnvalue = "";
	if (document.cookie.length > 0)
	{
		offset = document.cookie.indexOf(search)
		if (offset != -1) {
			offset += search.length;
			end = document.cookie.indexOf(";", offset);
			if (end == -1) end = document.cookie.length;
			returnvalue=unescape(document.cookie.substring(offset, end));
		}
	}
	return returnvalue;
}

function popUp(URL, UseCookie)
{
	if (UseCookie == true)
	{
		if (getCookie("popped")=="")
		{
			openWin(URL);
			document.cookie="popped=yes";
		}
	}
	else
	{
		openWin(URL);
	}
}
