// Ali Cengiz Begen @ 2001

var flag = ( navigator.userAgent.indexOf("MSIE") >=0 && parseInt( navigator.appVersion ) >= 4);

var pageLoaded = false;

function slideOpen(str) {
	link = window.open(str,"MCCL_Research","toolbar=no,location=0,directories=0,status=no,menubar=0,scrollbars=0,resizable=0,left=100,top=180,width=620,height=470");
}


function correctHeight() {
	if (flag) {
		correctHeightIE();				
	}
	else { 
		correctHeightOthers();
	}	
}

function correctHeightIE() {
	document.getElementById('spacer').height = document.body.clientHeight-197;
}

function correctHeightOthers() {
	document.getElementById('spacer').height = document.body.clientHeight-197;
}

function initialize() {
	pageLoaded = true;
	correctHeight();
}
