// JavaScript Document
//Pop-it menu- By Dynamic Drive - Modified by Wbird
//For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
//This credit MUST stay intact for use
var menuOffX=0	//菜单距连接文字最左端距离
var menuOffY=18	//菜单距连接文字顶端距离
var vBobjects = new Array();
var fo_shadows=new Array()
var linkset=new Array()
////No need to edit beyond here
var ie4=document.all&&navigator.userAgent.indexOf("Opera")==-1
var ns6=document.getElementById&&!document.all
var ns4=document.layers

//短信窗口
function openScript(url, width, height){
	var Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no,status=no' );
}
//插件窗口
function PlusOpen(url, width, height){
	window.open(url,"PlusOpen",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no,status=yes' );
}


function MM_findObj(n, d) {
var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
 
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  
	for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  
	if(!x && d.getElementById) x=d.getElementById(n); return x;

} 

function fetch_object(idname, forcefetch)
{
	if (typeof(vBobjects[idname]) == "undefined")
	{
		vBobjects[idname] = MM_findObj(idname);
	}
	return vBobjects[idname];
}
//showmenu vmenu:内容，允许为空,vmenuobj DIV数据ID，MOD 0=关闭浏览器自适应，用于版面导航菜单
function showmenu(e,vmenu,vmenuobj,mod){
	if (!document.all&&!document.getElementById&&!document.layers)
		return
	var which=vmenu;
	if (vmenuobj)
	{
		var MenuObj = fetch_object(vmenuobj);
		if (MenuObj)
		{
			which = MenuObj.innerHTML;
		}
	}
	if (!which)
	{
		return
	}
	clearhidemenu();
	ie_clearshadow();
	menuobj=ie4? document.all.popmenu : ns6? document.getElementById("popmenu") : ns4? document.popmenu : ""
	menuobj.thestyle=(ie4||ns6)? menuobj.style : menuobj
	if (ie4||ns6)
		menuobj.innerHTML=which
	else{
		menuobj.document.write('<layer name=gui bgcolor="#E6E6E6" width="165" onmouseover="clearhidemenu()" onmouseout="hidemenu()">'+which+'</layer>')
		menuobj.document.close()
	}
	menuobj.contentwidth=(ie4||ns6)? menuobj.offsetWidth : menuobj.document.gui.document.width
	menuobj.contentheight=(ie4||ns6)? menuobj.offsetHeight : menuobj.document.gui.document.height
	eventX=ie4? event.clientX : ns6? e.clientX : e.x
	eventY=ie4? event.clientY : ns6? e.clientY : e.y
	var rightedge=ie4? document.body.clientWidth-eventX : window.innerWidth-eventX
	var bottomedge=ie4? document.body.clientHeight-eventY : window.innerHeight-eventY
	var getlength
		if (rightedge<menuobj.contentwidth){
			getlength=ie4? document.body.scrollLeft+eventX-menuobj.contentwidth+menuOffX : ns6? window.pageXOffset+eventX-menuobj.contentwidth : eventX-menuobj.contentwidth
		}else{
			getlength=ie4? ie_x(event.srcElement)+menuOffX : ns6? window.pageXOffset+eventX : eventX
		}
		menuobj.thestyle.left=getlength+'px'
		if (bottomedge<menuobj.contentheight&&mod!=0){
			getlength=ie4? document.body.scrollTop+eventY-menuobj.contentheight-event.offsetY+menuOffY-23 : ns6? window.pageYOffset+eventY-menuobj.contentheight-10 : eventY-menuobj.contentheight
		}	else{
			getlength=ie4? ie_y(event.srcElement)+menuOffY : ns6? window.pageYOffset+eventY+10 : eventY
		}
	menuobj.thestyle.top=getlength+'px'
	menuobj.thestyle.visibility="visible"
	ie_dropshadow(menuobj,"#999999",3)
	return false
}

function ie_y(e){  
	var t=e.offsetTop;  
	while(e=e.offsetParent){  
		t+=e.offsetTop;  
	}  
	return t;  
}  
function ie_x(e){  
	var l=e.offsetLeft;  
	while(e=e.offsetParent){  
		l+=e.offsetLeft;  
	}  
	return l;  
}  
function ie_dropshadow(el, color, size)
{
	var i;
	for (i=size; i>0; i--)
	{
		var rect = document.createElement('div');
		var rs = rect.style
		rs.position = 'absolute';
		rs.left = (el.style.posLeft + i) + 'px';
		rs.top = (el.style.posTop + i) + 'px';
		rs.width = el.offsetWidth + 'px';
		rs.height = el.offsetHeight + 'px';
		rs.zIndex = el.style.zIndex - i;
		rs.backgroundColor = color;
		var opacity = 1 - i / (i + 1);
		rs.filter = 'alpha(opacity=' + (100 * opacity) + ')';
		//el.insertAdjacentElement('afterEnd', rect);
		fo_shadows[fo_shadows.length] = rect;
	}
}
function ie_clearshadow()
{
	for(var i=0;i<fo_shadows.length;i++)
	{
		if (fo_shadows[i])
			fo_shadows[i].style.display="none"
	}
	fo_shadows=new Array();
}


function contains_ns6(a, b) {
	while (b.parentNode)
		if ((b = b.parentNode) == a)
			return true;
	return false;
}

function hidemenu(){
	if (window.menuobj)
		menuobj.thestyle.visibility=(ie4||ns6)? "hidden" : "hide"
	ie_clearshadow()
}

function dynamichide(e){
	if (ie4&&!menuobj.contains(e.toElement))
		hidemenu()
	else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
		hidemenu()
}

function delayhidemenu(){
	if (ie4||ns6||ns4)
		delayhide=setTimeout("hidemenu()",500)
}

function clearhidemenu(){
	if (window.delayhide)
		clearTimeout(delayhide)
}

function highlightmenu(e,state){
	if (document.all)
		source_el=event.srcElement
	else if (document.getElementById)
		source_el=e.target
	if (source_el.className=="menuitems"){
		source_el.id=(state=="on")? "mouseoverstyle" : ""
	}
	else{
		while(source_el.id!="popmenu"){
			source_el=document.getElementById? source_el.parentNode : source_el.parentElement
			if (source_el.className=="menuitems"){
				source_el.id=(state=="on")? "mouseoverstyle" : ""
			}
		}
	}
}

if (ie4||ns6)
document.onclick=hidemenu
function doSClick() {
	var targetId, srcElement, targetElement, imageId, imageElement;
	srcElement = window.event.srcElement;
	targetId = srcElement.id + "content";
	targetElement = document.all(targetId);
	imageId = srcElement.id;
	imageId = imageId.charAt(0);
	imageElement = document.all(imageId);
	if (targetElement.style.display == "none") {
		imageElement.src = "Skins/Default/minus.gif"
		targetElement.style.display = "";
	} else {
		imageElement.src = "Skins/Default/plus.gif"
		targetElement.style.display = "none";
	}
}
function doClick() {
	var targetId, srcElement, targetElement;
	srcElement = window.event.srcElement;
	targetId = srcElement.id + "_content";
	targetElement = document.all(targetId);
	if (targetElement.style.display == "none") {
		srcElement.src = "Skins/Default/minus.gif"
		targetElement.style.display = "";
	} else {
		srcElement.src = "Skins/Default/plus.gif"
		targetElement.style.display = "none";
	}
}
function srh(){
       
		if (document.form1.key.value == "" || document.form1.key.value=="请您输入关键字查询")
		{
			alert("请输入关键字！");
			document.form1.key.focus();
			return false;
		}
			
  
	
	}
//HTML过滤函数
function HTML(text)
{
	text = text.replace(/&/g, "&amp;") ;
	text = text.replace(/"/g, "&quot;") ;
	text = text.replace(/</g, "&lt;") ;
	text = text.replace(/>/g, "&gt;") ;
	text = text.replace(/'/g, "&#146;") ;
	return text ;
}
function bbimg(o){
	var zoom=parseInt(o.style.zoom, 10)||100;zoom+=event.wheelDelta/12;if (zoom>0) o.style.zoom=zoom+'%';
	return false;
}

function InnerData(name,value)
{
	for (var objid in name) {
		var obj = document.getElementById(name[objid]);
		if (obj){
			obj.innerHTML = value[objid];
		}
	}
}
document.write("<table width=\"1000\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" background=\"\/images\/top_bg.gif\">");
document.write("  <tr>");
document.write("    <td><img src=\"\/images\/top_en.gif\" width=\"179\" height=\"36\"><\/td>");
document.write("    <td width=\"320\" align=\"center\" valign=\"bottom\" class=\"pad_bot_5\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
document.write("      <tr>");
document.write("        <td width=\"15\"><img src=\"\/images\/ic_01.gif\" width=\"5\" height=\"5\"><\/td>");
document.write("        <td width=\"60\"><a href=\"#\" onclick=\"this.style.behavior=\'url(#default#homepage)\';this.setHomePage(location.href);\">设为首页<\/a><\/td>");
document.write("        <td width=\"15\"><img src=\"\/images\/ic_01.gif\" width=\"5\" height=\"5\"><\/td>");
document.write("        <td width=\"60\"><a onclick=\"window.external.AddFavorite(location.href, document.title);\" href=\"javascript:void(0);\">加入收藏<\/a><\/td>");
document.write("        <td width=\"15\"><img src=\"\/images\/ic_01.gif\" width=\"5\" height=\"5\"><\/td>");
document.write("        <td width=\"50\"><a href=\"javascript:t2s()\">简体版<\/a><\/td>");
document.write("        <td width=\"15\"><img src=\"\/images\/ic_01.gif\" width=\"5\" height=\"5\"><\/td>");
document.write("        <td><a href=\"javascript:s2t()\">繁体版<\/a><\/td>");
document.write("      <\/tr>");
document.write("    <\/table><\/td>");
document.write("  <\/tr>");
document.write("<\/table>");
document.write("<table width=\"1000\" height=\"152\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">");
document.write("  <tr>");
document.write("<td height=\"152\">");
document.write("    <embed src=\"\/images\/2008top.swf\" quality=\"high\" pluginspage=\"http:\/\/www.macromedia.com\/go\/getflashplayer\" type=\"application\/x-shockwave-flash\" wmode=\"transparent\" width=\"1000\" height=\"152\"><\/embed><\/td>");
document.write("  <\/tr>");
document.write("<\/table>");
document.write("<table width=\"1000\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" background=\"\/images\/menu_bg.gif\">");
document.write("  <tr>");
document.write("    <td width=\"50\"><img src=\"\/images\/menu_01.gif\" width=\"15\" height=\"28\"><\/td>");
document.write("    <td width=\"580\" align=\"center\" class=\"twhite pad_top_5\"><a href=\"\/index.htm\" class=\"tb white\">首&nbsp;&nbsp;页<\/a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;<a href=\"\/njgsz\" class=\"tb white\" >机构设置<\/a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;<a href=\"\/nzwgk\" class=\"tb white\" >政务公开<\/a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;<a href=\"\/nzcfg\" class=\"tb white\" >政策法规<\/a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;<a href=\"\/nbsdt\" class=\"tb white\">办事大厅<\/a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;<a href=\"\/nhdjl\" class=\"tb white\">互动交流<\/a><\/td>");
document.write("    <td><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
document.write("<form name=\"form1\" method=\"post\" action=\"http:\/\/search.xmtfj.gov.cn:8011\/dataexchange\/searchsite\" target=\"_blank\">");
document.write(" <input type=\"hidden\" name=\"siteno\" value=\"4\">");
document.write("      <tr>");
document.write("        <td width=\"30\"><img src=\"\/images\/menu_ss.gif\" width=\"27\" height=\"21\"><\/td>");
document.write("        <td width=\"135\"><input name=\"key\" type=\"text\" class=\"tblue\" style=\"width:128px; height:20px;\" value=\"请您输入关键字查询\" onClick=\"this.value=\'\'\"><\/td>");
document.write("        <td width=\"120\"><select name=\"chnnls\" class=\"tblue\" style=\"width:110px;\">");
document.write("          <option value=\"\">全站检索<\/option>");
document.write("		  <option value=\"1084\">行业新闻<\/option>");
document.write("		  <option value=\"1084\">政务动态<\/option>");
document.write("		  <option value=\"1084\">通知公示<\/option>");
document.write("		  <option value=\"1084\">热点要闻<\/option>");
document.write("		  <option value=\"1032,929,935\">机构设置<\/option>");
document.write("		  <option value=\"945,1034,1440\">政务公开<\/option>");
document.write("		  <option value=\"1036\">政策法规<\/option>");
document.write("		  <option value=\"1359,1360,1361,1362,1363,1364,1365,1366,1587,1591,1607,1603,1599,1595,1623,1619,1615,1611,1627,1635,1631,1394,1395,1659,1655,1651,1647,1643,1639,1691,1687,1683,1679,1675,1671,1667,1663,1711,1707,1703,1699,1695,1727,1723,1719,1715,1735,1561,974,1572,975,985\">办事大厅<\/option>");
document.write("        <\/select><\/td>");
document.write("        <td><input type=\"image\" src=\"\/images\/menu_btss.gif\" width=\"57\" height=\"19\"  onClick=\"return srh()\"><\/td>");
document.write("      <\/tr>");
document.write("	  <\/form>");
document.write("    <\/table><\/td>");
document.write("  <\/tr>");
document.write("<\/table>");
document.write("<div class=menuskin id=popmenu onmouseover=\"clearhidemenu()\" onmouseout=\"dynamichide(event)\" style=\"Z-index:100\"></div>");
document.write("<table width=\"1000\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" background=\"\/images\/dh_bg.jpg\"><TBODY>");
document.write("<TR>");
document.write("<td width=\"210\"><img src=\"\/images\/dh.gif\" width=\"164\" height=\"25\"><\/td>");
document.write("<TD align=middle  class=\"tor\"><div   onmouseover=\"showmenu(event,\'\',\'Menu_1\')\" onmouseout=delayhidemenu() style=\"cursor:hand\"><font class=\"tor\">『土地管理』<\/font><\/div><\/TD>");
document.write("<TD align=middle  class=\"tor\"><div   onmouseover=\"showmenu(event,\'\',\'Menu_2\')\" onmouseout=delayhidemenu() style=\"cursor:hand\"><font class=\"tor\">『地矿管理』<\/font><\/div><\/TD>");
document.write("<TD align=middle  class=\"tor\"><div   onmouseover=\"showmenu(event,\'\',\'Menu_3\')\" onmouseout=delayhidemenu() style=\"cursor:hand\"><font class=\"tor\">『征地拆迁』<\/font><\/div><\/TD>");
document.write("<TD align=middle  class=\"tor\"><div   onmouseover=\"showmenu(event,\'\',\'Menu_4\')\" onmouseout=delayhidemenu() style=\"cursor:hand\"><font class=\"tor\">『房政管理』<\/font><\/div><\/TD>");
document.write("<TD align=middle  class=\"tor\"><div   onmouseover=\"showmenu(event,\'\',\'Menu_5\')\" onmouseout=delayhidemenu() style=\"cursor:hand\"><font class=\"tor\">『房地产市场』<\/font><\/div><\/TD>");
document.write("<TD align=middle  class=\"tor\"><div   onmouseover=\"showmenu(event,\'\',\'Menu_6\')\" onmouseout=delayhidemenu() style=\"cursor:hand\"><font class=\"tor\">『权籍管理』<\/font><\/div><\/TD>");
document.write("<TD align=middle  class=\"tor\"><div   onmouseover=\"showmenu(event,\'\',\'Menu_7\')\" onmouseout=delayhidemenu() style=\"cursor:hand\"><font class=\"tor\">『住房改革』<\/font><\/div><\/TD>");
document.write("<TD align=middle  class=\"tor\"><div   onmouseover=\"showmenu(event,\'\',\'Menu_8\')\" onmouseout=delayhidemenu() style=\"cursor:hand\"><font class=\"tor\">『公积金』<\/font><\/div><\/TD>");
document.write("<TD align=middle  class=\"tor\"><div   onmouseover=\"showmenu(event,\'\',\'Menu_9\')\" onmouseout=delayhidemenu() style=\"cursor:hand\"><font class=\"tor\">『测绘管理』<\/font><\/div><\/TD>");
document.write("<TD align=middle  class=\"tor\"><div   onmouseover=\"showmenu(event,\'\',\'Menu_10\')\" onmouseout=delayhidemenu() style=\"cursor:hand\"><font class=\"tor\">『综合信息』<\/font><\/div><\/TD>");
document.write("<\/TR><\/TBODY><\/TABLE>");
<!-- 土地管理 -->
document.write("<div style=\"Z-INDEX:1000\" class=\"Menu_popup\" id=\"Menu_1\">");
document.write("<div class=menuitems>");
document.write("<a href=\"/zfxxgk/zdgk/zd00115/zd00115_03/zd00115_0301/index_209.htm\"  target=_blank>土地利用总体规划</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_03/zd00115_0303/index_209.htm\" >土地年度供应计划</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_06/zd00115_0601/index_209.htm\" target=_blank>土地收费项目</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_51/zd00115_5102/index_209.htm\" target=_blank>土地变更调查</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_51/zd00115_5103/index_209.htm\" target=_blank>耕地保护</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_51/zd00115_5104/index_209.htm\" target=_blank>基本农田</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_52/zd00115_5201/index_209.htm\" target=_blank>基准地价</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_52/zd00115_5202/index_209.htm\" target=_blank>建设用地审批结果</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_52/zd00115_5203/index_209.htm\" target=_blank>土地批租</a>");
document.write("<br><a href=\"http://www.xmtfj.gov.cn/TZWEB/gao/index.asp\" target=_blank>土地出让公告</a>");
document.write("<br><a href=\"http://www.xmtfj.gov.cn/TZWEB/jyzq/tdcr.asp\" target=_blank>土地出让结果</a>");
document.write("<br><a href=\"http://www.xmtfj.gov.cn/TZWEB/jyzq/qita.asp\"  target=_blank>工业用地预申请</a>");
 
document.write("</div>");
document.write("</div>");
document.write("<!--土地管理end -->");

document.write("<!-- 地矿管理 -->");
document.write("<div class=\"Menu_popup\" id=\"Menu_2\">");
document.write("<div class=menuitems>");
document.write("<a href=\"/zfxxgk/zdgk/zd00115/zd00115_03/zd00115_0304/index_209.htm\" target=_blank>矿产资源总体规划</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_03/zd00115_0307/index_209.htm\" target=_blank>地质灾害防治规划</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_06/zd00115_0603/index_209.htm\" target=_blank>矿产收费项目</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_11/zd00115_1102/index_209.htm\" target=_blank>突发地质灾害应急预案</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_58/zd00115_5806/index_209.htm\" target=_blank>矿产资源储量通报</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_58/zd00115_5807/index_209.htm\" target=_blank>矿山年检结果公告</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_59/zd00115_5901/index_209.htm\" target=_blank>年度地质灾害防治方案</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_59/zd00115_5902/index_209.htm\" target=_blank>地质灾害预警</a>");
document.write("</div>");
document.write("</div>");
document.write("<!--地矿管理end -->");
document.write("<!-- 征地拆迁 -->");
document.write("<div class=\"Menu_popup\" id=\"Menu_3\">");
document.write("<div class=menuitems>");
document.write("<a href=\"/zfxxgk/zdgk/zd00115/zd00115_03/zd00115_0309/index_209.htm\" target=_blank>城市房屋拆迁计划</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_15/zd00115_1501/index_209.htm\" target=_blank>土地征收征用方案公告</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_15/zd00115_1502/index_209.htm\" target=_blank>土地征收补偿安置方案</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_15/zd00115_1503/index_209.htm\" target=_blank>征地预先通告</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_15/zd00115_1504/index_209.htm\" target=_blank>房屋拆迁通告</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_15/zd00115_1505/index_209.htm\" target=_blank>房屋拆迁延期通知</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_15/zd00115_1506/index_209.htm\" target=_blank>拆迁资质审批结果</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_15/zd00115_1507/index_209.htm\" target=_blank>房屋拆迁企业及人员</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_15/zd00115_1508/index_209.htm\" target=_blank>房屋拆除企业</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_15/zd00115_1509/index_209.htm\" target=_blank>听证公告</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_15/zd00115_1510/index_209.htm\" target=_blank>征地拆迁补偿、补助费用拨付情况</a>");
document.write("</div>");
document.write("</div>");
document.write("<!--征地拆迁 end -->");

document.write("<!-- 房政管理 -->");
document.write("<div class=\"Menu_popup\" id=\"Menu_4\">");
document.write("<div class=menuitems>");
document.write("<a href=\"/zfxxgk/zdgk/zd00115/zd00115_11/zd00115_1101/index_209.htm\" target=_blank>房屋防洪防台风抢险救灾预案</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_55/zd00115_5501/index_209.htm\" target=_blank>廉租住房实物安置</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_55/zd00115_5502/index_209.htm\" target=_blank>廉租住房租金补助</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_55/zd00115_5503/index_209.htm\" target=_blank>公房招租</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_55/zd00115_5504/index_209.htm\" target=_blank>保障性租赁房</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_55/zd00115_5505/index_209.htm\" >公有住房租金标准</a>");
 
document.write("</div>");
document.write("</div>");
document.write("<!--房政管理 end -->");

document.write("<!-- 房地产市场 -->");
document.write("<div class=\"Menu_popup\" id=\"Menu_5\">");
document.write("<div class=menuitems>");
document.write("<a href=\"/zfxxgk/zdgk/zd00115/zd00115_04/zd00115_0401/index_209.htm\" target=_blank>房地产市场信息</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_54/zd00115_5401/index_209.htm\" target=_blank>房地产经纪机构</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_54/zd00115_5402/index_209.htm\" target=_blank>房地产经纪人</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_54/zd00115_5403/index_209.htm\" target=_blank>房地产估价师</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00886/zd00886_54/zd00886_5401/index_209.htm\" target=_blank>商品房预售许可证通告</a>");
 
document.write("</div>");
document.write("</div>");
document.write("<!--房地产市场 end -->");

document.write("<!-- 权籍管理 -->");
document.write("<div class=\"Menu_popup\" id=\"Menu_6\">");
document.write("<div class=menuitems>");

document.write("<a href=\"/zfxxgk/zdgk/zd00115/zd00115_53/zd00115_5301/index_209.htm\" target=_blank>商品房项目权属登记备案</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_53/zd00115_5302/index_209.htm\" target=_blank>房产测绘资质管理信息</a>");

document.write("<br><a href=\"/zfxxgk/zdgk/zd00886/zd00886_53/zd00886_5301/index_209.htm\" target=_blank>权籍登记通告</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00886/zd00886_53/zd00886_5302/index_209.htm\" target=_blank>国有土地使用权抵押</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00886/zd00886_53/zd00886_5303/index_209.htm\" target=_blank>国有土地使用权转让</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00886/zd00886_53/zd00886_5304/index_209.htm\" target=_blank>土地登记结果</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00886/zd00886_53/zd00886_5305/index_209.htm\" target=_blank>房地产三级通告</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00891/zd00891_04/zd00891_0403/index_209.htm\" target=_blank>房产测绘成果审核</a>");
document.write("</div>");
document.write("</div>");
document.write("<!--权籍管理 end -->");

document.write("<!-- 住房改革 -->");
document.write("<div class=\"Menu_popup\" id=\"Menu_7\">");
document.write("<div class=menuitems>");
document.write("<a href=\"/zfxxgk/zdgk/zd00115/zd00115_57/zd00115_5701/index_209.htm\" target=_blank>商品房（房改）指导价</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_57/zd00115_5702/index_209.htm\" target=_blank>单位自管公有住房出售审批结果</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_57/zd00115_5703/index_209.htm\" target=_blank>企业住房货币化方案审批结果</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_57/zd00115_5704/index_209.htm\" target=_blank>住房面积控制标准</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_57/zd00115_5705/index_209.htm\" target=_blank>公有住房成本价</a>");
document.write("</div>");
document.write("</div>");
document.write("<!--住房改革 end -->");
document.write("<!-- 公积金 -->");
document.write("<div class=\"Menu_popup\" id=\"Menu_8\">");
document.write("<div class=menuitems>");
document.write("<a href=\"http://www.xmjydj.com/docc/gjjjsq.htm\" target=_blank>公积金计算器</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00887/zd00887_03/zd00887_0301/index_209.htm\" target=_blank>归集使用计划与执行情况</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00887/zd00887_51/zd00887_5101/index_209.htm\" target=_blank>经办银行网点</a>");

document.write("</div>");
document.write("</div>");
document.write("<!--公积金 end -->");

<!-- 测绘管理 -->
document.write("<div style=\"Z-INDEX:1000\" class=\"Menu_popup\" id=\"Menu_9\">");
document.write("<div class=menuitems>");
document.write("<a href=\"/zfxxgk/zdgk/zd00115/zd00115_03/zd00115_0308/index_209.htm\"  target=_blank>测绘规划</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_06/zd00115_0604/index_209.htm\" >测绘收费项目</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_60/zd00115_6001/index_209.htm\" target=_blank>全市基础测绘实施情况</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_60/zd00115_6002/index_209.htm\" target=_blank>基础测绘资质管理信息</a>");
document.write("</div>");
document.write("</div>");
document.write("<!--测绘管理 end -->");

<!-- 综合信息 -->
document.write("<div style=\"Z-INDEX:1000\" class=\"Menu_popup\" id=\"Menu_10\">");
document.write("<div class=menuitems>");
document.write("<a href=\"/zfxxgk/zdgk/zd00115/zd00115_07/zd00115_0702/index_209.htm\"  target=_blank>政府采购自行采购项目</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_63/zd00115_6301/index_209.htm\" target=_blank>年度十件大事</a>");
document.write("<br><a href=\"/zfxxgk/zdgk/zd00115/zd00115_63/zd00115_6302/index_209.htm\" target=_blank>政务承诺</a>");
document.write("<br><a href=\"/nzwgk/zjyxm/\" target=_blank>公共资金使用情况</a>");

document.write("</div>");
document.write("</div>");
document.write("<!--综合信息 end -->");
document.write("<map name=\"Map\"><area shape=\"rect\" coords=\"856,111,929,149\" href=\"\/nbsdt\/index_259.htm\">");
document.write("<area shape=\"rect\" coords=\"933,110,990,149\" href=\"\/nbsdt\/index_260.htm\">");
document.write("<\/map>");