<!--
function e(elem)
{ 
	return document.getElementById(elem);
}

function changeVisi(layerid, newimage)
{
	e(layerid).style.backgroundImage = 'url(' + newimage + ')'; 
}

function popUp(w, h, file)
{
	var l = Math.floor((screen.width-w)/2);
	var t = Math.floor((screen.height-h)/2);
	window.open(file,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
}

function ScaleMainTable()
{
	if (navigator.appName == "Microsoft Internet Explorer")
	{
		document.getElementById('contentfont').height = screen.height - 506;
	}
	else if (navigator.appName == "Opera")
	{
		document.getElementById('contentfont').height = screen.height - 497;
	}
	else
	{
		document.getElementById('contentfont').height = screen.height - 522;
	}
}

if (document.images)
{
	pic1 = new Image(10, 10); 
	pic1.src ="images/arrow_white.gif"; 

	pic2 = new Image(10, 10); 
	pic2.src ="images/arrow.gif"; 
}
-->