function increaseheight(){
	var wrapper=document.getElementById('layGlobalWrapper').offsetHeight;

	if (wrapper < 670) {
		document.getElementById('layGlobalWrapper').style.height = 670 +'px';
	} 
}	

window.onload = function() {
	increaseheight();
}

