// JavaScript Document

function ge(id){
	return document.getElementById(id);	
}

window.onload=function(){
	var mainH=ge('main').offsetHeight;
	ge('leftBord').style.height=mainH+'px';
	ge('rightBord').style.height=mainH+'px';
	document.body.style.height=(mainH+20)+'px';
	document.documentElement.style.height=(mainH+20)+'px';
}
