function FixContentHeight(varHeight)
{
	var theWidth = 0, theHeight = 0;
	if( typeof( window.innerWidth ) == 'number' )
	{
		//Non-IE
		theWidth = window.innerWidth;
		theHeight = window.innerHeight;
	}
	else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) )
	{
		//IE 6+ in 'standards compliant mode'
		theWidth = document.documentElement.clientWidth;
		theHeight = document.documentElement.clientHeight;
	}
	else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) )
	{
		//IE 4 compatible
		theWidth = document.body.clientWidth;
		theHeight = document.body.clientHeight;
	}
	if ( theHeight > varHeight )
	{
		var paddingHeight = (theHeight-varHeight)/2;
		paddingHeight = Math.round(paddingHeight);
		paddingHeight = paddingHeight+'px';
		document.getElementById('Content').style["marginTop"] = paddingHeight;
	}
}
