<!--
var detect = navigator.userAgent.toLowerCase();
var OS,browser,version,total,thestring;

if (checkIt('konqueror'))
{
	browser = "Konqueror";
	OS = "Linux";
}
else if (checkIt('safari')) browser = "Safari"
else if (checkIt('omniweb')) browser = "OmniWeb"
else if (checkIt('opera')) browser = "Opera"
else if (checkIt('webtv')) browser = "WebTV";
else if (checkIt('icab')) browser = "iCab"
else if (checkIt('msie')) browser = "Microsoft"
else if (!checkIt('compatible'))
{
	browser = "Netscape"
	version = detect.charAt(8);
}
else browser = "An unknown browser";

if (!version) version = detect.charAt(place + thestring.length);

if (!OS)
{
	if (checkIt('linux')) OS = "Linux";
	else if (checkIt('x11')) OS = "Unix";
	else if (checkIt('mac')) OS = "Mac"
	else if (checkIt('win')) OS = "Windows"
	else OS = "an unknown operating system";
}

function checkIt(string)
{
	place = detect.indexOf(string) + 1;
	thestring = string;
	return place;
}

//-->

<!--
var winW = 630, winH = 460, winX = 460;

if (version > 3) 
{
 if (browser == "Microsoft") {
  winW = document.body.clientWidth;
  winH = document.body.clientHeight;
 }
 else {
  winW = window.innerWidth;
  winH = window.innerHeight;
 }
 if( browser == "Microsoft" && document.documentElement &&
  ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
  //IE 6+ in 'standards compliant mode'
  winW = document.documentElement.clientWidth;
  winH = document.documentElement.clientHeight;
//for some reason, IE is off by the footer padding amount...
  winH = winH - 10;
 } 
}

winX = winH - 232;

document.write(
 "<img src=\"/Page/clear.gif\" class=\"nopad\" width=\"1\" height="+winX+" alt=\"\" border=\"0\" align=\"left\" />"
)
//-->