<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>处室设置 - 天津建设网</title>
<link href="../../../images/css_1.css" rel="stylesheet" type="text/css" />
<SCRIPT type="text/javascript" src="../../../images/wuzhangai.js"></SCRIPT>  
</head>
<body>
<div class="body"   id="container">
<link href="../../../images/css_3.css" rel="stylesheet" type="text/css" />
<link href="../../../images/css_4.css" rel="stylesheet" type="text/css" />
<SCRIPT type="text/javascript" src="../../../images/wuzhangai.js"></SCRIPT>  

<style type="text/css">
<!--
a:hover {
	text-decoration: none;
}
-->
</style>
<div class="topbar">
    <div class="weather">
      <table border="0">
        <tr>
          <td><iframe name="weather_inc" src="http://tianqi.2345.com/plugin/widget/index.htm?s=3&z=2&t=1&v=0&d=1&k=&f=1&q=1&e=0&a=1&c=54527&w=180&h=36" width="190" height="35" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" allowTransparency="true" style="filter:alpha(opacity=100)"></iframe><!--<iframe name="weather_inc" src="http://tianqi.xixik.com/cframe/1" width="190" height="35" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>--></td>
          <td><span class="date">
            <script language='JavaScript'>
   <!--
   tmpDate = new Date();
   date = tmpDate.getDate();
   month = tmpDate.getMonth() + 1 ;
   year = tmpDate.getYear();
   year = tmpDate.getYear();
   year = year>1900 ? year : year+1900;
   document.write(year + "年" + month + "月" + date + "日&nbsp;");
   
   myArray = new Array(6);
   myArray[0] = "星期日"
   myArray[1] = "星期一"
   myArray[2] = "星期二"
   myArray[3] = "星期三"
   myArray[4] = "星期四"
   myArray[5] = "星期五"
   myArray[6] = "星期六"
   weekday = tmpDate.getDay();
   document.write(myArray[weekday])
   //-->
</script>&nbsp; 
        <script type="text/javascript">
var LunarDaysOfMonth = new Array
(
0xd4a8, 0xd4a0, 0xda50, 0x5aa8, 0x56a0, 0xaad8, 0x25d0, 0x92d0, 0xc958, 0xa950, // 2001-2010 
0xb4a0, 0xb550, 0xb550, 0x55a8, 0x4ba0, 0xa5b0, 0x52b8, 0x52b0, 0xa930, 0x74a8, // 2011-2020 
0x6aa0, 0xad50, 0x4da8, 0x4b60, 0x9570, 0xa4e0, 0xd260, 0xe930, 0xd530, 0x5aa0, // 2021-2030 
0x6b50, 0x96d0, 0x4ae8, 0x4ad0, 0xa4d0, 0xd258, 0xd250, 0xd520, 0xdaa0, 0xb5a0, // 2031-2040 
0x56d0, 0x4ad8, 0x49b0, 0xa4b8, 0xa4b0, 0xaa50, 0xb528, 0x6d20, 0xada0, 0x55b0 // 2041-2050 
);

// 数组LunarLeapYear存放农历2001年到2050年闰月的月份，如没有则为0，从高到低，每字节存两年 
var LunarLeapYear = new Array
(
0x40, 0x02, 0x07, 0x00, 0x50, // 2001-2010 
0x04, 0x09, 0x00, 0x60, 0x04, // 2011-2020 
0x00, 0x20, 0x60, 0x05, 0x00, // 2021-2030 
0x30, 0xb0, 0x06, 0x00, 0x50, // 2031-2040 
0x02, 0x07, 0x00, 0x50, 0x03 // 2041-2050 
);


// 返回农历iLunarYear年的闰月月份，如没有则返回0 
function GetLeapMonth(iLunarYear)
{ 
var Leap = LunarLeapYear[(iLunarYear - 2001) >> 1];
return (((iLunarYear - 2001) & 1) == 0) ? (Leap >> 4) : (Leap & 0x0f);
}

// 返回农历iLunarYer年iLunarMonth月的天数，结果是一个长整数
// 如果iLunarMonth不是闰月， 高字为0，低字为该月的天数
// 如果iLunarMonth是闰月， 高字为后一个月的天数，低字为前一个月的天数
function LunarMonthDays(iLunarYear, iLunarMonth)
{ 
var High;
var Low;
var Bit;

High = 0;
Low = 29;
Bit = 16 - iLunarMonth;
if ((iLunarMonth > GetLeapMonth(iLunarYear)) && (GetLeapMonth(iLunarYear) > 0)) Bit--;
if ((LunarDaysOfMonth[iLunarYear - 2001] & (1 << Bit)) > 0) Low++;
if (iLunarMonth == GetLeapMonth(iLunarYear))
{
High = ((LunarDaysOfMonth[iLunarYear - 2001] & (1 << (Bit-1))) > 0) ? 30 : 29;
}

return Low + (High << 16);
}

// 返回农历iLunarYear年的总天数
function LunarYearDays(iLunarYear)
{ 
var Days;
var tmp;

Days = 0;
for (var i=1; i <= 12; i++)
{
tmp = LunarMonthDays(iLunarYear, i);
Days = Days + ((tmp >> 16) & 0xffff); //取高位 
Days = Days + (tmp & 0xffff); //取低位 
}

return Days;
}

// 将农历iLunarYear年格式化成天干地支记年法表示的字符串 
function FormatLunarYear(iLunarYear)
{ 
var szText1 = new String("甲乙丙丁戊己庚辛壬癸");
var szText2 = new String("子丑寅卯辰巳午未申酉戌亥");
var strYear;

strYear = szText1.substr((iLunarYear - 4) % 10, 1);
strYear = strYear + szText2.substr((iLunarYear - 4) % 12, 1);

return strYear + "年&nbsp;";
}

// 将农历iLunarMonth月格式化成农历表示的字符串
function FormatLunarMonth(iLunarMonth)
{ 
var szText = new String("正二三四五六七八九十");
var strMonth;

if (iLunarMonth <= 10)
{
strMonth = szText.substr(iLunarMonth - 1, 1);
}
else if (iLunarMonth == 11) strMonth = "十一";
else strMonth = "十二";

return strMonth + "月";
}

// 将农历iLunarDay日格式化成农历表示的字符串
function FormatLunarDay(iLunarDay)
{ 
var szText1 = new String("初十廿三");
var szText2 = new String("一二三四五六七八九十");
var strDay;
if ((iLunarDay != 20) && (iLunarDay != 30))
{
strDay = szText1.substr((iLunarDay - 1) / 10, 1) + szText2.substr((iLunarDay - 1) % 10, 1);
}
else if (iLunarDay != 20)
{
strDay = szText1.substr(iLunarDay / 10, 1) + "十";
}
else
{
strDay = "二十";
}

return strDay;
}

// 将公历日期转换为农历日期，返回农历表示的字符串
function GetLunarDateString(SolarDate)
{
var tmp;
var iLunarYear;
var iLunarMonth;
var iLunarDay;
var Leap = false;
var MinMilli = 1000 * 60;
var HrMilli = MinMilli * 60;
var DyMilli = HrMilli * 24;

// 从2001年1月1日算起，给定的公历日期已经过去的天数
// 11323是1970年1月1日到2001年1月1日之间的天数，因为Date是从1970年1月1日作为起点的
var iSpanDays = Math.round(SolarDate.getTime() / DyMilli) - 11323;

// 公历2001年1月24日为农历2001年正月初一，差23天
if (iSpanDays < 23)
{
iYear = 2000;
iLunarMonth = 12;
iLunarDay = iSpanDays + 7;
}
else
{
// 从农历2001年正月初一算起 
iSpanDays = iSpanDays - 23;
iLunarYear = 2001;
iLunarMonth = 1;
iLunarDay = 1;

// 计算农历年 
tmp = LunarYearDays(iLunarYear);
while (iSpanDays >= tmp)
{
iSpanDays -= tmp;
iLunarYear++;
tmp = LunarYearDays(iLunarYear);
}

// 计算农历月 
tmp = LunarMonthDays(iLunarYear, iLunarMonth) & 0xffff; //取低字
while (iSpanDays >= tmp)
{
iSpanDays -= tmp;
if (iLunarMonth == GetLeapMonth(iLunarYear)) // 该年该月闰月
{
tmp = LunarMonthDays(iLunarYear, iLunarMonth) >> 16; //取高字
if (iSpanDays < tmp)
{
Leap = (tmp > 0) ? true : false; // 闰月的后个月？
break;
}
iSpanDays = iSpanDays - tmp;
}

iLunarMonth++;
tmp = LunarMonthDays(iLunarYear,iLunarMonth) & 0xffff; //取低字
}

// 计算农历日 
iLunarDay += iSpanDays;
}

return  (Leap ? "闰" : "") + FormatLunarMonth(iLunarMonth) + FormatLunarDay(iLunarDay);
}

var today= new Date(); // 今天是2004-3-5
var str = GetLunarDateString(today);
document.write("农历"+str);

</script>
          </span></td>
        </tr>
      </table>
    </div>
    <div><a class="btn_rss" href="../../../sy/rss/"><span>Rss</span></a><a class="btn_dz" href="../../../sy/dzlm/">定制栏目</a></div>
    <div class="r_ss"> <a href="#" onclick="kqNav()">无障碍网站</a>|<a href="http://218.69.33.178:8080/pub/tjjsw/index_564.html"  target="_blank">手机网站</a>|<a href="http://218.69.33.178:8080/pub/ywzd/" target="_blank">English</a>| </div>
    <div class="clear"></div>
</div>
<div class="banner">
<div style="width:70px; height:70px; position:absolute; z-index:999; margin-left:30px; margin-top:33px; "><a href="http://www.tjcac.gov.cn/" target="_blank"><img src="../../../images/nullpic_2.gif" width="70" height="70" /></a></div>
<div style="width:50px; height:50px; position:absolute; z-index:999; margin-left:40px; margin-top:115px; "><a href="http://www.tj.gov.cn/" target="_blank"><img src="../../../images/nullpic_2.gif" width="50" height="50" /></a></div>
<div>
  <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="1000" height="207">
    <param name="movie" value="../../../images/banner.swf" />
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="6.0.65.0" />
    <!-- 此 param 标签提示使用 Flash Player 6.0 r65 和更高版本的用户下载最新版本的 Flash Player。如果您不想让用户看到该提示，请将其删除。 -->
    <param name="expressinstall" value="Scripts/expressInstall.swf" />
    <!-- 下一个对象标签用于非 IE 浏览器。所以使用 IECC 将其从 IE 隐藏。 -->
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="../../../images/banner.swf" width="1000" height="207">
      <!--<![endif]-->
      <param name="quality" value="high" />
      <param name="wmode" value="opaque" />
      <param name="swfversion" value="6.0.65.0" />
      <param name="expressinstall" value="Scripts/expressInstall.swf" />
      <!-- 浏览器将以下替代内容显示给使用 Flash Player 6.0 和更低版本的用户。 -->
      <div>
        <h4>此页面上的内容需要较新版本的 Adobe Flash Player。</h4>
        <p><a href="http://www.adobe.com/go/getflashplayer"><img src="../../../images/get_flash_player.gif" alt="获取 Adobe Flash Player" width="112" height="33" /></a></p>
      </div>
      <!--[if !IE]>-->
    </object>
    <!--<![endif]-->
  </object>
</div>
</div>
  <div class="menu">
    <ul>
      <li><a href="../../../">首　页</a></li>

      <li><a href="../../">政务公开</a></li>
      <li><a href="../../../xwzx/">新闻中心</a></li>
      <li><a href="../../../bsdt/">办事大厅</a></li>
      <li><a href="../../../ggcx/">公共查询</a></li>
      <li><a href="../../../zmhd/" >政民互动</a></li>  
      <li><a href="../../../ztzl/ " >专题专栏</a></li>
      <li><a href="../../../xzzx/ " >下载中心</a></li>
    </ul>
  </div>
  <div class="scr_new">
    <div class="scr_list">
      <ul>    
        <marquee 
        <marquee onmouseover=this.stop() onmouseout=this.start() direction=left scrolldelay=100 scrollamount=3> 
        
        <li><span class="time">[2017-10-25]</span><a href="http://www.tjcac.gov.cn/xxgk/ghjh/201705/t20170527_47675.html" target="_blank">盘山风景名胜区总体规划（2016-2030年）</a>&nbsp;&nbsp;</li>
        
        </marquee>
      </ul>
    </div>
    <div class="soso">

	   <script>

 function guanjianzi(){
    document.charset='UTF-8';
    var docFormId;
	
			
    var gjz=document.getElementsByName("gjz")[0].value;
    if(gjz.replace(/ */g,"").length==0){
	alert("请输入关键字");
	return false;
    }

else{

	document.getElementById("sw2").value=gjz;
	//alert(gjz);
	return true;
	
  }
  }

</script>

	  <form target="_self" action="http://218.69.33.149:8083/was5/web/search" method="post"  accept-charset="UTF-8" onsubmit="return guanjianzi();"	>
		  <input name="gjz" type="text" id="s" value="请输入关键字" class="sobk" onFocus="if(value==defaultValue){value='';}" onBlur="if(!value){value=defaultValue;}" />
		  <input type="hidden" name="searchword" id="sw2" />
		  <input type="hidden" id="channelid" name="channelid" value="267807" />
		  <input type="hidden" name="orderby" value />
		  <input type="hidden" name="perpage" value="10" />
		  <input type="hidden" name="preKeyword" value />
			<input name type="submit" value="检索" class="sobtn" />		
			
	  </form>
	  
    </div>
    <div class="clear"></div>
  </div>
    
  <!--内容-->
  <div class="er_main">
    <div class="weizhi"> &nbsp;&nbsp;您的位置：<a href="../../../" title="首页" class="CurrChnlCls">首页</a>><a href="../../" title="政务公开" class="CurrChnlCls">政务公开</a>><a href="../" title="处室设置" class="CurrChnlCls">处室设置</a></div>
    <div class="content">
        	<div class="show_bt" align="center" style="padding-left:20px;padding-right:20px;">信访处</div>
            <div class="t_line"></div>
<div class="con_show">
            	<div class="con_Info">
                    	<span>来源：天津建设网</span>
                        <span>作者：天津建设网</span>
                        <span>时间：2014-09-28</span>
  </div>
              	<div>
                <div class=TRS_Editor><div class="Custom_UnionStyle">
<div style="overflow-x: hidden; word-break: break-all">
<p align="justify"><span><font size="+0">&nbsp;&nbsp;&nbsp; 负责系统维护稳定和社会治安综合治理工作；牵头委反恐工作；负责受理群众来信来电，接待来访；负责有关电子邮件、电话热线、媒体网络等渠道群众来信来访的承办工作；承办上级单位及相关部门转来的信件和事项；协调处理突发信访事件。承办委领导交办的其他事项。</font></span>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div></div>
                	          </div>
<div class="print">
             	<input name="" type="button" value="保存本页" onclick="javascript:document.execCommand('saveAs')" />
                <input name="" type="button" value="打印本页" onclick="javascript:window.print()" />
                <input name="" type="button" value="关闭窗口" onclick="javascript:window.close()" />
           	 </div>
             </div>
             
            
        </div>
  </div>
  <!--link--> 
  
  <!--foot-->
<div class="foot"><table style='margin: auto;'><tr><td>  <a href="../../../">返回首页</a>|<a href="http://mail.tjcac.gov.cn/" target="_blank">进入邮箱</a>|<a  href="mailto:office@tjcac.gov.cn">联系我们</a>|<a href="../../../sy/yssm/" target="_blank">隐私声明</a>|<a href="../../../yqlj/wzdt/" target="_blank">网站地图</a>|<a href="http://www.tjcac.gov.cn/ywzd" target="_blank">English</a>





<br />
    天津市城乡建设委员会主办   天津市建设信息技术服务中心承办   备案编号：津ICP备05004025号<br />
    Copyright &copy; 2004-2013 www.tjcac.gov.cn All Rights Reserved
</tr>
<tr>
<table style='display: block;margin: auto;width: 382px;'><tr>
<td>
<script id="_jiucuo_" sitecode='1200000029' src='../../../images/jiucuo.js'></script>
</td>

<td><!--可信网站图片LOGO安装开始-->
<script src="http://kxlogo.knet.cn/seallogo.dll?sn=a14052112010349161nl7q000000&size=0"></script>
</td>
<td>
<!--可信网站图片LOGO安装结束--> 
<script type="text/javascript">document.write(unescape("%3Cspan id='_ideConac' %3E%3C/span%3E%3Cscript src='http://dcs.conac.cn/js/03/000/0000/40723349/CA030000000407233490001.js' type='text/javascript'%3E%3C/script%3E"));</script>

</td>
</tr></table>
</tr></table>
</div>
</div>
</body>
</html>