// JavaScript Document
function mainheight()
{
	var rheight = document.getElementById('content').offsetHeight;
	var lheight = document.getElementById('sidebar').offsetHeight;
	if(lheight>rheight)
	{
		boxheight=lheight;
		conbomheight=lheight-150;
		i=rheight-431;
	}else
	{
		boxheight=rheight;
		i=rheight-431-10-10-10;
	}
	document.getElementById('sidebar').style.height=boxheight+'px';
	document.getElementById('main').style.height=boxheight+'px';
	document.getElementById('iabout').style.height=i+'px';
	/*document.getElementById('content').style.border='1px solid #096';*/
}
window.onload=function()
{
	mainheight();
}
