	function fixLayout(){
		if(document.getElementById('g_content')){
			rc=document.getElementById('g_right')
			cc=document.getElementById('g_content')
			nc=document.getElementById('menu_level0')
			if(nc.scrollHeight>cc.scrollHeight){
				cc=nc;
			}
			//alert(cc.scrollHeight)
			top_space=document.getElementById('top_div').scrollHeight+document.getElementById('top_nav').scrollHeight+10;
			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+3-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";
			}
			if(cc.scrollHeight+top_space>rc.scrollHeight){
					document.getElementById('g_right').style.height=(cc.scrollHeight+top_space-parseInt(rc.style.paddingTop))+"px";
			
			}
		}		
	}

	function isIE(){
	return document.all;
	}
	

