	function fixLayout(){
		if(document.getElementById('g_content')){
			rc=document.getElementById('g_right')
			cc=document.getElementById('g_content')
			//alert(cc.scrollHeight)
			nc=document.getElementById('menu_level0')
			if(nc.scrollHeight>cc.scrollHeight){
				cc=nc;
			}
			top_space=document.getElementById('top_div').scrollHeight+document.getElementById('top_nav').scrollHeight+10+15;
			diff=cc.scrollHeight-rc.scrollHeight+top_space;
			rc.style.marginTop=((-1)*(document.getElementById('top_nav').scrollHeight+10))+"px";
			if(isIE()){
			rc.style.paddingTop=(document.getElementById('top_div').scrollHeight+document.getElementById('top_nav').scrollHeight+4-document.getElementById('div_search').scrollHeight)+"px";

			}else{
			rc.style.paddingTop=(document.getElementById('top_div').scrollHeight+document.getElementById('top_nav').scrollHeight+10-document.getElementById('div_search').scrollHeight)+"px";
			//document.getElementById('div_search').paddingBottom='13px';
			}
			if(cc.scrollHeight+top_space>rc.scrollHeight){
					document.getElementById('g_right').style.height=(cc.scrollHeight+top_space-parseInt(rc.style.paddingTop))+"px";
			
			}
			document.getElementById('henworx').style.top=(top_space-78)+'px';
		}		
	}

	function isIE(){
		return document.all;
	}
	

