// JavaScript Document
function mainheight()
{
	var lheight = document.getElementById('content').offsetHeight;
	var lheight = document.getElementById('sidebar').offsetHeight;
	var flash = document.getElementById('flash').offsetHeight;
	var indexcon = document.getElementById('indexcon').offsetHeight;
	var iabout = document.getElementById('iabout').offsetHeight;
	var rheight = flash + indexcon + iabout + 20;
	if(lheight>rheight)
	{
		boxheight=lheight;
		conbomheight=lheight-150;
	}else
	{
		boxheight=rheight;

	}
	document.getElementById('sidebar').style.height=950+'px';
	document.getElementById('main').style.height=950+'px';
}
window.onload=function()
{
	mainheight();
}
