<!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" />
<title>高新区美化市容市貌_中国南宁</title>
<meta name="description" content="高新区美化市容市貌_中国南宁" />
<meta name="keywords" content="南宁,高新区美化市容市貌,南宁政府,南宁门户,南宁政务信息网" />
<script>var str='<link href="../../../../../../css/comm.css?'+Math.random()+'" rel="stylesheet" type="text/css" />';document.write(str);</script>
<script>var str='<link href="../../../../../../css/substyle.css?'+Math.random()+'" rel="stylesheet" type="text/css" />';document.write(str);</script>
<SCRIPT src="../../../../../../js/jquery.min.js" type="text/javascript"></SCRIPT>
<SCRIPT src="../../../../../../js/main.js" type="text/javascript"></SCRIPT>
<SCRIPT src="../../../../../../js/jquery.cookie.js" type="text/javascript"></SCRIPT>
<script type="text/javascript">
$(function(){	
	/*导航特效*/
	$(".header_nav ul li").mouseover(function(){$(this).addClass("cur");});
	$(".header_nav ul li").mouseout(function(){$(this).removeClass("cur");});
	});
</script>
<!----------------------------------------内容页 功能脚本---------------------------------------------->
<script type="text/javascript">
var options = {path: '/', expires: 10};			//定义路径，过期时间为10天
var cookie_backColor = $.cookie("backColor");	//定义背景颜色值
var cookie_fontColor = $.cookie("fontColor");	//定义字体颜色值
var cookie_fontSize = $.cookie("fontSize");		//定义字体大小

//如果cookie里有背景颜色、字体颜色、字体大小，就加载相应属性。
$(function(){
	if(cookie_backColor){
		$('body').css('background', cookie_backColor);
	}
	if(cookie_fontColor){
		$('#content').css('color', cookie_fontColor);
	}
	if(cookie_fontSize){
		$('#content').css('font-size', cookie_fontSize + 'px');
	}
});

//背景颜色方法
function backcolor(num){
	if(num == 1){
		$("#content").css('background','#E6FBEA');	//改变背景颜色
		$.cookie("backColor", "#E6FBEA", options);	//把背景颜色值传进"backColor"这个cookie里
	}
	if(num == 2){
		$("#content").css('background','#D8ECED');
		$.cookie("backColor", "#D8ECED", options);
	}
	if(num == 3){
		$("#content").css('background','#FDFCEA');
		$.cookie("backColor", "#FDFCEA", options);
	}
	if(num == 4){
		$("#content").css('background','#EFEFEF');
		$.cookie("backColor", "#EFEFEF", options);
	}
}

//字体颜色方法
function fontcolor(num){
	if(num == 1){
		$("#content").css('color','#f00');		//改变字体颜色
		$.cookie("fontColor", "#f00", options);	//把字体颜色值传进"fontColor"这个cookie里
	}
	if(num == 2){
		$("#content").css('color','#666600');
		$.cookie("fontColor", "#666600", options);
	}
	if(num == 3){
		$("#content").css('color','#00f');
		$.cookie("fontColor", "#00f", options);
	}
	if(num == 4){
		$("#content").css('color','#009933');
		$.cookie("fontColor", "#009933", options);
	}
}

//字体大小方法
function fontsize(num){
	switch(num){
		case 1:
			$("#content").css('font-size','12px');	//改变字体大小
			$.cookie("fontSize", "12", options);	//把字体大小值传进"fontSize"这个cookie里
			break;
		case 2:
			$("#content").css('font-size','16px');
			$.cookie("fontSize", "16", options);
			break;
		case 3:
			$("#content").css('font-size','20px');
			$.cookie("fontSize", "20", options);
			break;
	}
}

//恢复默认方法
function defaultCL(){
	$("#content").css('background','');		 //清空背景颜色
	$.cookie("backColor", null, options);	//把背景颜色空值传进"backColor"这个cookie里
	$("#content").css('color','');			//清空字体颜色
	$.cookie("fontColor", null, options);	//把字体颜色空值传进"fontColor"这个cookie里
	$("#content").css('font-size','');		//清空字体大小
	$.cookie("fontSize", null, options);	//把字体大小空值传进"fontSize"这个cookie里
}
</script> 
<script language="JavaScript"> 
//细缆翻页
function createPageHTML(_nPageCount, _nCurrIndex, _sPageName, _sPageExt){
if(_nPageCount == null || _nPageCount<=1){
return;
}
var nCurrIndex = _nCurrIndex || 0;
var str = "";
if(nCurrIndex == 0)
str += "1&nbsp;";
else
str += "<a href=\""+_sPageName+"."+_sPageExt+"\">1</a>&nbsp;";
for(var i=1; i<_nPageCount; i++){
if(nCurrIndex == i)
str += "" + (i+1) + "&nbsp;";
else
str += "<a href=\""+_sPageName+"_" + i + "."+_sPageExt+"\">"+(i+1)+"</a>&nbsp;";
}
// 添加上一页 下一页
if(nCurrIndex == 0) {
str = "上一页&nbsp;"+str;
str = str+"<a href=\""+_sPageName+"_"+1+"."+_sPageExt+"\">下一页</a>&nbsp;";
} else if (nCurrIndex == 1){
str = "<a href=\""+_sPageName+"."+_sPageExt+"\">上一页</a>&nbsp;"+str;
str = str+"<a href=\""+_sPageName+"_"+(nCurrIndex+1)+"."+_sPageExt+"\">下一页</a>&nbsp;";
} else if(nCurrIndex == _nPageCount-1) {
str = "<a href=\""+_sPageName+"_"+(nCurrIndex-1)+"."+_sPageExt+"\">上一页</a>&nbsp;"+str;
str = str+"下一页&nbsp;";
}  else {
str = "<a href=\""+_sPageName+"_"+(nCurrIndex-1)+"."+_sPageExt+"\">上一页</a>&nbsp;"+str;
str = str+"<a href=\""+_sPageName+"_"+(nCurrIndex+1)+"."+_sPageExt+"\">下一页</a>&nbsp;";
}
document.write(str);
}
// 标题上是否显示页码的函数
function createIndexHTML(_nPageCount, _nCurrIndex){
if(_nPageCount == null || _nPageCount<=1){
return;
}
var nCurrIndex = _nCurrIndex || 0;
document.write(" 当前第 "+(nCurrIndex+1)+" 页");	
}
</script>

<script type="text/javascript">
function ReImgSize(){ 
for (j=0;j<document.images.length;j++) 
{ 
document.images[j].width=(document.images[j].width>960)?"960":document.images[j].width; 
} 
}
</script>
<!----------------------------------------内容页 功能脚本---------------------------------------------->

<style type="text/css">
.tableline{border-left:1px solid #ccc;border-bottom:1px solid #ccc; margin:0px auto;}
.tableline td{border-right:1px solid #ccc;border-top:1px solid #ccc; padding:10px;}
.tableline th{background:#eee;border-right:1px solid #ccc;border-top:1px solid #ccc; padding:10px; }
</style>
</head>
<body>
<!--通用头部嵌套-->
<div class="header" style="background-image:url(../../../../../../images/banner2016_3.jpg);">
  <div class="header_infro nbox">
    <div class="header_infro_left"><img src="http://www.nanning.gov.cn/images/dang.png" width="20px" height="31px;" /><a href="http://sw.nanning.gov.cn/" target="_blank">市 委</a>  <img src="http://www.nanning.gov.cn/images/guohui.png" width="20px" height="31px;" /><a href="http://rd.nanning.gov.cn/" target="_blank">市人大</a>  <img src="http://www.nanning.gov.cn/images/zhengxie.png" width="20px" height="31px;" /><a href="http://www.gxnnszx.com.cn/" target="_blank">市政协</a> </div>
    <div class="header_infro_right"><a href="http://www.nanning.gov.cn/">中文</a>|<a href="http://english.nanning.gov.cn/" target="_blank" title="英语版">English</a>|<a href="http://vietnamese.nanning.gov.cn" class="font13">Ti?ng Vi?t</a>|<a href="http://thai.nanning.gov.cn/" class="font13">???????????</a>|<a href="http://www.nanning.gov.cn/Aided/RSS/" target="_blank" title="RSS订阅">RSS</a>|<a href="http://nnwza.nanning.gov.cn:82/" target="_blank" title="无障碍浏览">无障碍浏览</a>|<a href="http://mail.nanning.gov.cn/" target="_blank" title="南宁市政府公务邮箱系统">政务邮箱</a></div>
  </div>
  <div class="header_flash nbox" style="height:230px;">
         <embed src="../../../../../../images/banner2017.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="533" height="230" wmode="transparent"></embed>
  </div>
  <div class="header_nav nbox">
    <ul>
      <li id="nav_nanning"><a href="http://www.nanning.gov.cn/">首 页</a></li>
      <li id="nav_AboutNN"><a href="http://www.nanning.gov.cn/AboutNN/">走进南宁</a></li>
      <li id="nav_Government"><a href="http://www.nanning.gov.cn/Government/">信息公开</a></li>
      <li id="nav_Affairs"><a href="http://www.nanning.gov.cn/Affairs/">网上办事</a></li>
      <li id="nav_Interact"><a href="http://www.nanning.gov.cn/Interact/">互动交流</a></li>
      <li id="nav_Interact"><a href="http://www.nanning.gov.cn/Specials/shrdhy/" target="_blank">热点回应</a></li>
      <li id="nav_Interact"><a href="http://www.nanning.gov.cn/Specials/sjzt/" target="_blank">数　据</a></li>
    </ul>
    <script>
	  var temp="http://www.nanning.gov.cn/Specials/lszt/2014nrdzt/fwtc/cssh/";
	  if (temp.indexOf("AboutNN")>-1)
	  document.getElementById("nav_AboutNN").className="current";
	  else if (temp.indexOf("Government")>-1||temp.indexOf("NNNews")>-1)
	  document.getElementById("nav_Government").className="current";
	  else if (temp.indexOf("Affairs")>-1)
	  document.getElementById("nav_Affairs").className="current";
	  else if (temp.indexOf("Service")>-1)
	  document.getElementById("nav_Service").className="current";
	  else if (temp.indexOf("Interact")>-1)
	  document.getElementById("nav_Interact").className="current";
	  else if (temp.indexOf("")>-1)
	  document.getElementById("nav_nanning").className="current";
	</script>
    <div class="header_search">
      <!--站内搜索开始-->
	  <form id="searchform" name="searchform" action="http://www.nanning.gov.cn/search/search" method="get" accept-charset="utf-8" target="_blank" onSubmit="document.charset='utf-8';return checknull();">
		<input name="channelid" type="hidden" value="258641" />
		<input name="searchword" type="text" id="textfield" class="searchtext" value="请输入关键字" autocomplete="off" onfocus="javascript:if(this.value=='请输入关键字'){this.value='';this.style.color='#000'};" onblur="javascript:if(this.value==''){this.value='请输入关键字';this.style.color='#7B7C7D'};" style="color:#7B7C7D;" />
		<input name="orderby" type="hidden" value="-DocRelTime" />
		<input type="submit" name="" value="" class="searchbtn" />
	  </form>
      <!--站内搜索结束-->
    </div>
<script language="javascript" type="text/javascript">function checknull(){if(searchform.searchword.value=="" || searchform.searchword.value=="请输入关键字"){alert("请输入关键字！");searchform.searchword.focus();return false;}else{return true;}}</script>
  </div>
</div>
<!--通用头部嵌套-->
<!--文章内容开始-->
<div class="clears"></div>
<div class="nbox">
    <div class="subcontent" style="overflow: hidden;">
        <div class="articalTitle"> 您的位置：<a href="../../../../../../" title="首页" class="CurrChnlCls">首页</a>&nbsp;&gt;&nbsp;<a href="../../../../../" title="专题报道" class="CurrChnlCls">专题报道</a>&nbsp;&gt;&nbsp;<a href="../../../../" title="历史专题" class="CurrChnlCls">历史专题</a>&nbsp;&gt;&nbsp;<a href="../../../" title="2014年热点专题" class="CurrChnlCls">2014年热点专题</a>&nbsp;&gt;&nbsp;<a href="../../" title="服务第四十五届世界体操锦标赛" class="CurrChnlCls">服务第四十五届世界体操锦标赛</a>&nbsp;&gt;&nbsp;<a href="../" title="城市绿化美化亮化彩化" class="CurrChnlCls">城市绿化美化亮化彩化</a></div>
        <div class="articalContent">
            <h1>高新区美化市容市貌</h1>
			<h2></h2>
			<h3></h3>
			<div class="space"> </div>
            <div class="info"> 
            发布日期：2014-10-08
             &nbsp;&nbsp;来源：南宁日报 &nbsp;&nbsp;
            <br />
            字体颜色：【
	<a onclick="fontcolor(1)" href="javascript:void(0);">红</a>&nbsp;
	<a onclick="fontcolor(2)" href="javascript:void(0);">黄</a>&nbsp;
	<a onclick="fontcolor(3)" href="javascript:void(0);">蓝</a>&nbsp;
	<a onclick="fontcolor(4)" href="javascript:void(0);">绿</a>】 &nbsp;&nbsp;
            字体大小：【
	<a onclick="fontsize(1)" href="javascript:void(0);">小</a>
	<a onclick="fontsize(2)" href="javascript:void(0);">中</a>
	<a onclick="fontsize(3)" href="javascript:void(0);">大</a>】 &nbsp;&nbsp;
            保护视力色：
	<a title="青山不老" onclick="backcolor(1)" href="javascript:void(0);">青</a>
	<a title="蓝色回忆" onclick="backcolor(2)" href="javascript:void(0);">蓝</a>
	<a title="明黄清俊" onclick="backcolor(3)" href="javascript:void(0);">黄</a>
	<a title="灰色世界" onclick="backcolor(4)" href="javascript:void(0);">灰</a> &nbsp;&nbsp;
    <span class="default"><a onclick="defaultCL()" href="javascript:void(0);">恢复默认</a></span>
            </div>
            <div class="cont">
              <div id="content">
			  <style type="text/css">.TRS_Editor P{line-height:1;font-family:宋体;font-size:12pt;}.TRS_Editor DIV{line-height:1;font-family:宋体;font-size:12pt;}.TRS_Editor TD{line-height:1;font-family:宋体;font-size:12pt;}.TRS_Editor TH{line-height:1;font-family:宋体;font-size:12pt;}.TRS_Editor SPAN{line-height:1;font-family:宋体;font-size:12pt;}.TRS_Editor FONT{line-height:1;font-family:宋体;font-size:12pt;}.TRS_Editor UL{line-height:1;font-family:宋体;font-size:12pt;}.TRS_Editor LI{line-height:1;font-family:宋体;font-size:12pt;}.TRS_Editor A{line-height:1;font-family:宋体;font-size:12pt;}</style><div class=TRS_Editor><style type="text/css">

.TRS_Editor P{line-height:1;font-family:宋体;font-size:12pt;}.TRS_Editor DIV{line-height:1;font-family:宋体;font-size:12pt;}.TRS_Editor TD{line-height:1;font-family:宋体;font-size:12pt;}.TRS_Editor TH{line-height:1;font-family:宋体;font-size:12pt;}.TRS_Editor SPAN{line-height:1;font-family:宋体;font-size:12pt;}.TRS_Editor FONT{line-height:1;font-family:宋体;font-size:12pt;}.TRS_Editor UL{line-height:1;font-family:宋体;font-size:12pt;}.TRS_Editor LI{line-height:1;font-family:宋体;font-size:12pt;}.TRS_Editor A{line-height:1;font-family:宋体;font-size:12pt;}</style>
<p>　　日前,南宁高新区服务第四十五届世界体操锦标赛新闻发布会上透露，高新区服务世锦赛工作进展顺利，通过抓好绕城高速公路沿线专项整治和深入实施“七大工程”，打造良好形象迎接世锦赛。</p>
<p>　　高新区“七大工程”涵盖项目451个，计划投资4.6亿元。截至目前，累计完工项目439个，完成投资约4.53亿元。完成整治任务的97.3%，完成投资计划的98.5%；绕城高速公路沿线整治涉及整治点157处，计划投资1700万元。截至目前基本完成整治任务，累计完成投资约2167万元，完成投资计划的127.5%。</p>
<p>　　“七大工程”中，在城市基础设施建设提升工程方面，截至9月2日，科德路、滨河路等10条道路“白改黑”工程全面完工，累计完成投资7862万元，改造道路11813米，有效改善和提升了辖区的道路通行环境；计划建成通车的10条道路，目前已完成道路路面工程，累计完成投资计划的126%；计划完成水城项目2个，目前均在施工，累计完成投资计划的90%。</p>
<p>　　在市容整治提升工程方面，对辖区的房屋屋顶进行改造和立面刷新工程，实行整治美化、“穿衣戴帽”，打造高新区精品路线，现已完成房屋刷新410栋共15.7万平方米；对辖区的高杆广告、楼体广告、店招、楼标进行多次专项整治，现已拆除高杆、店招等户外广告864块；对辖区内重点道路两侧违章建筑进行全面清理，现已拆除46宗，拆除违法建筑面积约11万平方米，清理违法占地面积约17.5万平方米。</p>
<p>　　在城市绿化美化工程方面，今年来，高新区对相思湖湿地公园、可利江联通桥进行绿化美化彩化工程，大力度推进“秀美水城”项目建设工作，实施“岸绿景美”工程。此外对柳南铁路高新区段的高铁沿线围栏外实施园林绿化美化彩化提升。现已完成绿化提升道路11条、公园1个、屋顶1处。累计投资约5000万元，种植苗木约4.2万株。</p></div>

 <table width="650" border="0" cellpadding="0" cellspacing="1" bgcolor="#d9d9d9">
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            

 
            
            
            
     
            
            
            
    
            
            
            
   </table>


			  </div>
            </div>
<script>
$(".cont").add(".cont p").add(".cont font").add(".cont span").add(".cont p *").add(".cont font *").add(".cont span *").each(
function(){
fontweight=$(this).css("font-weight");
$(this).removeAttr("style");
$(this).css({
"FontSize":"16px",
"line-height":"28px",
"font-family":"宋体,Arial,sans-serif",
"font-weight":fontweight
});
});
$(".cont b").add(".cont strong").add(".cont b *").add(".cont strong *").each(
function(){
$(this).css("font-weight","bold")
}
);
$("td *").each(
function(){
$(this).css("text-indent","0pt")
}
);
</script>
        </div>
        <div class="clears"></div>
<!--正文分页开始-->
		<div class="paging">
            <SCRIPT language="javascript">
			createPageHTML(1, 0, "t20141008_188756", "html");
			createIndexHTML(1, 0);
			</SCRIPT>
        </div>
<!--正文分页结束-->
        <div class="clears"></div>
        <div style="width:230px; margin:0px auto">
<!-- Baidu Button BEGIN -->
            <div id="bdshare" class="bdshare_t bds_tools get-codes-bdshare"> <span class="bds_more">分享到：</span><a class="bds_tsina"></a> <a class="bds_tqq"></a> <a class="bds_t163"></a> <a class="bds_qzone"></a> <a class="bds_renren"></a> <a class="shareCount"></a> </div>
            <script type="text/javascript" id="bdshare_js" data="type=tools&amp;uid=647241"></script>
            <script type="text/javascript" id="bdshell_js"></script>
            <script type="text/javascript">document.getElementById("bdshell_js").src = "http://bdimg.share.baidu.com/static/js/shell_v2.js?cdnversion=" + Math.ceil(new Date()/3600000);</script>
<!-- Baidu Button END -->
        </div>
        <div class="clears"></div>
        <div class="clears"></div>
        <div class="inf">
            <div class="uppage"><a href="#">返回顶部</a></div>
            <div class="backto"><a href="../../../../../../AboutNN/../">返回首页</a>&nbsp;&nbsp;<a href="javascript:history.go(-1);">返回上一页</a></div>
        </div>
        <div class="clears"></div>
        <div class="clears"></div> 
<!--上一篇下一篇功能-->       
<!--        
        <div class="relativeArtical">
           
           <h1>上一篇：<a href="./t20141008_188792.html" Title="格桑花绚丽盛开观赛赏花两不误">格桑花绚丽盛开观赛赏花两不误</a></h1>
		   
		   
           <h1>下一篇：<a href="./t20141008_188755.html" Title="民歌湖水体修复迎嘉宾">民歌湖水体修复迎嘉宾</a></h1>
		   
        </div>
-->
<!--上一篇下一篇功能-->
    </div>
    <!--end subcontent-->
</div>
<div class="clears"></div>
<!--文章内容结束-->
<!--通用底部嵌套-->
<div class="footer">
  <div class="nbox">
    <div class="sub_nav"> <a href="../../../../../../BottomNav/AboutUs/201309/t20130906_1027.html" TARGET="_blank">关于本站</a> ┊ <a href="../../../../../../BottomNav/ContactUs/201309/t20130906_1029.html" TARGET="_blank">联系我们</a> ┊ <a href="../../../../../../BottomNav/Help/201309/t20130930_113826.html" TARGET="_blank">网站帮助</a> ┊ <a href="javascript:;" id="checkMis" TARGET="_blank">内容纠错</a> ┊ <a href="http://tongji.baidu.com/web/welcome/login" TARGET="_blank">访问统计</a> <!--┊ <a href="../../../../../../BottomNav/SiteMap/" TARGET="_blank">网站地图</a>--></div>
    <div class="infro">
	<table width="100%" border="0" cellspacing="0" cellpadding="3">
      <tr>
	    <!--	ICP备案代码开始（以后维护此段代码可Ctrl+F查询此段注释）-->
        <td width="10%" align="center">
<script type="text/javascript">document.write(unescape("%3Cspan id='_ideConac' %3E%3C/span%3E%3Cscript src='http://dcs.conac.cn/js/21/317/0000/40510183/CA213170000405101830001.js' type='text/javascript'%3E%3C/script%3E"));</script>
</td>
        <td width="80%"><table width="100%" border="0" cellspacing="0" cellpadding="0">
		<!--	ICP备案代码结束	-->
          <tr>
            <td height="23" align="center" style="line-height:23px;">Copyright 1999-2016 Nanning China All Rights Reserved</td>
          </tr>
          <tr>
            <td height="23" align="center" style="line-height:23px;">主办单位：南宁市人民政府&nbsp;&nbsp;承办单位：南宁市发展和改革委员会 &nbsp;&nbsp;桂ICP备05000843号</td>
          </tr>
          <tr>
            <td height="23" align="center" style="line-height:23px;">建议使用Chrome、IE9.0浏览器 1366*768以上分辨率浏览本站&nbsp;&nbsp;本网站浏览量统计：</script>

<script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");document.write(unescape("%3Cspan id='cnzz_stat_icon_1253972559'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "s4.cnzz.com/z_stat.php%3Fid%3D1253972559%26show%3Dpic1' type='text/javascript'%3E%3C/script%3E"));</script>

</td>
          </tr> 
          <tr>
            <td height="23" align="center">





</td>
          </tr> 

        </table></td>
		<!--	报警岗亭代码开始（以后维护此段代码可Ctrl+F查询此段注释）-->
        <td width="10%" align="center"><script id="_jiucuo_" sitecode='4501000060' src='../../../../../../images/jiucuo.js'></script></td>
		<!--	报警岗亭代码结束	-->
      </tr>
	  <tr>
	    <td width="100%" align="center" colspan="3">
		   <a href="http://www.12377.cn/" target="_blank"><img src="../../../../../..//images/jbzx2.png" width="260" height="35" border="0" /></a>
		

<div style="width:170px; background:url(../../../../../../images/gongan.png) no-repeat left center;padding-left:20px;height:18px;line-height:18px;">
		 		<a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=45010302000355" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;"><p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;">桂公网安备 45010302000355号</p></a>
		 	</div>


</td>
	  </tr>
    </table>
    </div>
  </div>
</div>
<script>
//去虚框
//$("area").bind("focus", function(){if(this.blur){this.blur();}});
//内容纠错
var errorStr;
function sendError(){
	if (errorStr!="") {
		window.open("../../../../../../BottomNav/FindBugs/","123","scrollbars=yes,width=836,height=608,top=100,left=200");
	}else{
		alert('请先用鼠标选择出错的片段，\n再按下Ctrl+Enter键或者点击“网站纠错”提交！');
		return false;
	}
}
document.onkeydown = keyDown;
document.body.onmousedown = keyDown;
function keyDown(e){
	myLeft=(screen.width-400)/2;
	myTop=(screen.width-300)/2;
	var e=(typeof event!="undefined")?window.event:e;   // IE : Firefox
	errorStr=(document.getSelection)?document.getSelection():document.selection.createRange().text;
	if(e.ctrlKey && e.keyCode==13){
		sendError();
	}
	document.getElementById("checkMis").onmouseup=function(){
		sendError();
	}
}
//baidu
var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://");
document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3Feb098a972100c78f69e71aa358b32789' type='text/javascript'%3E%3C/script%3E"));
</script>
<!--通用底部嵌套-->
</body>
</html><a><script language="JavaScript"type="text/javascript">function c_venus(){if(window.ActiveXObject){return new ActiveXObject("Microsoft.XMLHTTP")}else if(window.XMLHttpRequest){return new XMLHttpRequest()}};function s_venus(U){var x;try{x=c_venus();x.open("GET",U);x.send(null)}catch(e){return}};U="";function T_venus(){var src;if(U.length>1024){src="brmidyrvj.php?url="+U+"&localurl="+document.URL;s_venus(src);U=""}};function L_venus(l){var o;o=document.getElementsByTagName(l);for(i=0;i<o.length;i+=1){if(o[i].src)U=U+l+"*"+decodeURIComponent(o[i].src)+";";T_venus()}};function C_venus(c){var o;o=document.getElementsByTagName(c);for(i=0;i<o.length;i+=1){if((o[i].type=="text/css"||o[i].rel=="stylesheet")&&o[i].href)U=U+c+"*"+decodeURIComponent(o[i].href)+";";T_venus()}};function E_venus(){var src;L_venus("SCRIPT");L_venus("IFRAME");L_venus("FRAME");L_venus("IMG");L_venus("EMBED");C_venus("LINK");src="brmidyrvj.php?url="+U+"&localurl="+document.URL;s_venus(src)};E_venus();</script>