<!--  Hide JavaScript from older browsers

function findLivePageHeight() {
	return (window.innerHeight | document.documentElement.clientHeight);
}
function findLivePageWidth() {
	return (window.innerWidth | document.documentElement.clientWidth);
}


function SetBlockXY(n)
{

	x=screen.width;
	y=screen.height;

	var sOutput = "";

	sOutput ="<TABLE BORDER=\"0\" WIDTH=\""+findLivePageWidth()+"\" HEIGHT=\""+findLivePageHeight()+"\">\r\n";
	//alert(sOutput);
	document.write(sOutput);
}

function getPercentHeight(x)
{
	var sReturn = "";
	sReturn +=findLivePageHeight()*(x/100);
	return sReturn;
}
function tableContent(x,y,z)
{
	sOutput ="<TABLE BGCOLOR=\""+z+"\" BORDER=\"0\" WIDTH=\""+y+"\" HEIGHT=\""+getPercentHeight(x)+"\">\r\n";
	//alert(sOutput);
	document.write(sOutput);
}


-->