<!--
function getexpirydate( nmin){
var UTCstring;
Today = new Date();
nomilli=Date.parse(Today);
Today.setTime(nomilli+nmin*60*1000);
UTCstring = Today.toUTCString();
return UTCstring;
}
function getcookie(cookiename) {
 var cookiestring=""+document.cookie;
 var index1=cookiestring.indexOf(cookiename);
 if (index1==-1 || cookiename=="") return "";
 var index2=cookiestring.indexOf(';',index1);
 if (index2==-1) index2=cookiestring.length;
 return unescape(cookiestring.substring(index1+cookiename.length+1,index2));
}
function setacook(){
document.cookie="acode="+getcookie('acode')+";EXPIRES="+getexpirydate(60)+
";PATH=/";
return true;
}
function popitup(url,name,wid,ht,ext) {
        if (!ht) ht=680;
        if (!wid) wid=680;
	newwindow=window.open(url,name,"height="+ht+",width="+wid+",scrollbars=1,resizable=1,"+ext);
	if (window.focus) {newwindow.focus()}
	return false;
}
// -->
