// Ali Cengiz Begen @ 2004

var flag = ( navigator.userAgent.indexOf("MSIE") >=0 && parseInt( navigator.appVersion ) >= 4);

var pageLoaded = false;

function computeContentHeight()
{
	NS4 = document.layers;

	if (NS4) 
	{
//		document.layers["underprimnav"].height = document.layers["body"].clientHeight-129-25;
		return;
	}
	else if (!document.all)
	{
		return;
	}
	else 
	{
		computeContentHeight_IE();
	}
}

function computeContentHeight_IE()
{
	document.all('underprimnav').height = document.body.clientHeight-139-40-25;
}

function initPage()
{
	pageLoaded = true;
	computeContentHeight();
}
