<!--
//

var version = "other"
browserName = navigator.appName;   
browserVer = parseInt(navigator.appVersion);

if (browserName == "Netscape" && browserVer >= 3) version = "n3";
else if (browserName == "Netscape" && browserVer < 3) version = "n2";
else if (browserName == "Microsoft Internet Explorer" && browserVer >= 4) version = "e4";
else if (browserName == "Microsoft Internet Explorer" && browserVer < 4) version = "e3";


function marquee1(HEIGHTtmp)
{
	if (version == "e4")
	{
		document.write("<marquee style='BOTTOM: 2px; HEIGHT:"+HEIGHTtmp+";  TEXT-ALIGN: left; TOP: 2px' id='news' scrollamount='1' scrolldelay='10' behavior='loop' direction='up' border='0' onmouseover='this.stop()' onmouseout='this.start()'>")
	}
}

function marquee2()
{
	if (version == "e4")
	{
		document.write("</marquee>")
	}
}
function windowOpener(loadpos)
{
controlWindow=window.open(loadpos,"surveywin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left="+(screen.width-300)/2+",top="+(screen.width-600)/2+",width=290,height=360");
}
//-->