// Script.js

var version = "other";
var browserName = navigator.appName;
var 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 stopError()
{
	return true;
}
window.onerror = stopError;

function wireOpen()
{
	if (version == "e4")
	{
		document.write("<marquee dir=rtl behavior=scroll direction=up dir=rtl width=95% height=100 scrollamount=1.7 scrolldelay=75 onmouseover='this.stop()' onmouseout='this.start()'>")
	}
}

function wireClose()
{
	if (version == "e4")
	{
		document.write("</marquee>")
	}
}

////////////////////////////////////////////////////////////////////////
function MouseOver(row)
{
	var table = document.getElementById('links');
	var cell = table.children(0).children(row).children(0);
	cell.bgColor = "CCCCCC";
	cell.borderColor = "666666";
	cell.style.cursor = "hand";
}

function MouseClick(a)
{
	document.location = (a);
}

function MouseOut(row)
{
	var table = document.getElementById('links');
	var cell = table.children(0).children(row).children(0);
	cell.bgColor = "EBEBEB";
	cell.borderColor = "EBEBEB";
}
////////////////////////////////////////////////////////////////////////

