<!--
//
var invokePopup=true;
function doPopup1(url)
{
if (invokePopup) {
var visit=GetCookie("popmagician");
if (visit!=null)
	return; // Cookie hasn't timed out yet
setCookie(1* (0*0*0) ); // number of seconds until cookie expires
theLeft=(screen.width)?(screen.width-440)/2:260;
theTop=(screen.height)?(screen.height-500)/2:100;
settings="width=420, height=490, top=" + theTop + ", left=" + theLeft + ", titlebar=yes, menubar=no, toolbar=no, location=no, directories=no, resizable=yes, scrollbars=yes, status=no";
mypopwin=window.open(url, 'myname', settings);
mypopwin.focus();
}
}

function GetCookie(name) {
	var arg=name+"=";
	var alen=arg.length;
	var clen=document.cookie.length;
	var i=0;
	while (i<clen) {
	var j=i+alen;
	if (document.cookie.substring(i,j)==arg)
	return "here";
	i=document.cookie.indexOf(" ",i)+1;
	if (i==0) break;
	}
	return null;
}

function setCookie(expireSeconds){
	var expire=new Date();
	expire=new Date(expire.getTime()+(expireSeconds*1000));
	document.cookie="popmagician=here; expires="+expire;
}// -->