<!--
	function fncScrollIt()
	{
		if(navigator.appName=="Netscape")
		{
			document.getElementById('idTop').style.left = 3;
			document.getElementById('idTop').style.width = 140;
			document.getElementById('idTop').style.height = 16;
		}

		if(document.body.scrollTop < 390)
			document.getElementById('idTop').style.display = 'none';
		else
			document.getElementById('idTop').style.display = '';

		document.getElementById('idTop').style.top = 20 + document.body.scrollTop;
		//document.getElementById('idTop').style.top = document.body.clientHeight - 60 + document.body.scrollTop;
		x = document.getElementById('idTop').style.top;
		x = x.replace(/px/g,'');

		if(x < 200)
			x = 200;

		document.getElementById('idTop').style.top = x;
	}

	function fncInit()
	{
		if(top.location != location)
			top.location.href = document.location.href;

		/*
		for(var intCount = 0; intCount < document.all.length; intCount++)
		{
			if(document.location.href.indexOf(document.all.items(intCount).id) > 0)
				document.all.items(intCount).src = '/images/' + srcElement.id + 'On.gif'
		}
		*/
	}
	
	function fncMouseIt(srcElement)
	{
		if(srcElement.src.indexOf("Out.gif") > 0)
			srcElement.src = '/images/' + srcElement.id + 'Over.gif'
		else
			srcElement.src = '/images/' + srcElement.id + 'Out.gif'
	}
//-->