<!--
function check()
{	
	if (screen.height>864)
	{
		document.all.contenttable.style.height="505pt";
	}
	else if (screen.height>768)
	{
		document.all.contenttable.style.height="385pt";
	}
	else if ((screen.width>800) && (screen.height>600))
	{
		document.all.contenttable.style.height="315pt";
	}
	else
	{
		document.all.contenttable.style.height="";
	}
}
//-->