// Ali Cengiz Begen @ 2005

var flag = ( navigator.userAgent.indexOf("MSIE") >=0 && parseInt( navigator.appVersion ) >= 4);

function initialize() {
	pageLoaded = true;
	correctHeight();
}


function correctHeight() {
	if (flag) {
		correctHeightIE();				
	}
	else { 
		correctHeightOthers();
	}	
}

function correctHeightIE() {
	document.getElementById('mainText').height = document.body.clientHeight-245;
}

function correctHeightOthers() {
	document.getElementById('spacer').height = document.body.clientHeight-245;
}




