var div1;
function show_hdpd() {
	var url = "inter.do?method=getHdpd";
	div1 = document.getElementById("show_hdpd");
	ajaxRequest(url, show1);
}

function show1(){
	if(xmlHttp.readyState==4 || xmlHttp.readyState=="complete"){
	    if(xmlHttp.responseText!=null){
	      div1.innerHTML=xmlHttp.responseText;
	      
	    }
	}
}
function show_navigation(){
	var url = "inter.do?method=getNavigation";
	 div1=document.getElementById("navigation");
	ajaxRequest(url,show1);
}

function loginlt(){
	location.href="http://www.nblr.gov.cn/Helloer/forum-1-1.html";
}