<!--
//getting the content height:
var contH="100%"
var headerH=228
var footerH=38

function GetContentH(){
	if (ns) contH=window.innerHeight-headerH-footerH
	else if (ua.toLowerCase().indexOf("windows")<0) contH=document.body.clientHeight-headerH-footerH
}
GetContentH()

//-->