function window_height () {
 
 if (document.documentElement.clientHeight > 650) {
	 document.getElementById('centerpart').style.height = (document.documentElement.clientHeight) + 'px';
 	 document.getElementById('rightpart').style.height = (document.documentElement.clientHeight) + 'px';
	 document.getElementById('vert').style.height = (document.documentElement.clientHeight) + 'px';
	 document.getElementById('scrollBox').style.height = (document.documentElement.clientHeight) - 80 + 'px';
	 //document.getElementById('scrollBox').style.overflow = 'auto';
	 
	 }
 else {
	 document.getElementById('centerpart').style.height = 650 + 'px';
 	 document.getElementById('rightpart').style.height = 650 + 'px';
	 document.getElementById('vert').style.height = 650 + 'px';
	 document.getElementById('scrollBox').style.height = 570 + 'px';
	 //document.getElementById('scrollBox').style.overflow = 'auto';
	 }
 
 

}






