<!--
//xmlhttp和xmldom对象
var DedeXHTTP = null;
var DedeXDOM = null;
var DedeContainer = null;
var DedeShowError = false;
var DedeShowWait = false;
var DedeErrCon = "";
var DedeErrDisplay = "下载数据失败";
var DedeWaitDisplay = "正在下载数据...";



function $DE(id) {
	return document.getElementById(id);
}

//获取指定ID的元素
function $(eid){
	return document.getElementById(eid);
}

//gcontainer 是保存下载完成的内容的容器
//mShowError 是否提示错误信息
//DedeShowWait 是否提示等待信息
//mErrCon 服务器返回什么字符串视为错误
//mErrDisplay 发生错误时显示的信息
//mWaitDisplay 等待时提示信息
//默认调用 DedeAjax('divid',false,false,'','','')

function DedeAjax(gcontainer,mShowError,mShowWait,mErrCon,mErrDisplay,mWaitDisplay){

DedeContainer = gcontainer;
DedeShowError = mShowError;
DedeShowWait = mShowWait;
if(mErrCon!="") DedeErrCon = mErrCon;
if(mErrDisplay!="") DedeErrDisplay = mErrDisplay;
if(mWaitDisplay!="") DedeWaitDisplay = mWaitDisplay;


//post或get发送数据的键值对
this.keys = Array();
this.values = Array();
this.keyCount = -1;

//http请求头
this.rkeys = Array();
this.rvalues = Array();
this.rkeyCount = -1;

//请求头类型
this.rtype = 'text';

//初始化xmlhttp
if(window.XMLHttpRequest){//IE7, Mozilla ,Firefox 等浏览器内置该对象
   DedeXHTTP = new XMLHttpRequest();
}else if(window.ActiveXObject){//IE6、IE5
   try { DedeXHTTP = new ActiveXObject("Msxml2.XMLHTTP");} catch (e) { }
   if (DedeXHTTP == null) try { DedeXHTTP = new ActiveXObject("Microsoft.XMLHTTP");} catch (e) { }
}

DedeXHTTP.onreadystatechange = function(){
	if(DedeXHTTP.readyState == 4){
    if(DedeXHTTP.status == 200){
       if(DedeXHTTP.responseText!=DedeErrCon && DedeXHTTP.responseText!=''){
         DedeContainer.innerHTML = DedeXHTTP.responseText;
       }else{
       	 if(DedeShowError) DedeContainer.innerHTML = DedeErrDisplay;
       }
       DedeXHTTP = null;
    }else{ if(DedeShowError) DedeContainer.innerHTML = DedeErrDisplay; }
  }else{ if(DedeShowWait) DedeContainer.innerHTML = DedeWaitDisplay; }
};

//增加一个POST或GET键值对
this.AddKey = function(skey,svalue){
	this.keyCount++;
	this.keys[this.keyCount] = skey;
	this.values[this.keyCount] = escape(svalue);
};

//增加一个Http请求头键值对
this.AddHead = function(skey,svalue){
	this.rkeyCount++;
	this.rkeys[this.rkeyCount] = skey;
	this.rvalues[this.rkeyCount] = svalue;
};

//清除当前对象的哈希表参数
this.ClearSet = function(){
	this.keyCount = -1;
	this.keys = Array();
	this.values = Array();
	this.rkeyCount = -1;
	this.rkeys = Array();
	this.rvalues = Array();
};

//发送http请求头
this.SendHead = function(){
	if(this.rkeyCount!=-1){ //发送用户自行设定的请求头
  	for(;i<=this.rkeyCount;i++){
  		DedeXHTTP.setRequestHeader(this.rkeys[i],this.rvalues[i]); 
  	}
  }
　if(this.rtype=='binary'){
  	DedeXHTTP.setRequestHeader("Content-Type","multipart/form-data");
  }else{
  	DedeXHTTP.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
  }
};

//用Post方式发送数据
this.SendPost = function(purl){
	var pdata = "";
	var i=0;
	this.state = 0;
	DedeXHTTP.open("POST", purl, true); 
	this.SendHead();
  if(this.keyCount!=-1){ //post数据
  	for(;i<=this.keyCount;i++){
  		if(pdata=="") pdata = this.keys[i]+'='+this.values[i];
  		else pdata += "&"+this.keys[i]+'='+this.values[i];
  	}
  }
  DedeXHTTP.send(pdata);
};

//用GET方式发送数据
this.SendGet = function(purl){
	var gkey = "";
	var i=0;
	this.state = 0;
	if(this.keyCount!=-1){ //get参数
  	for(;i<=this.keyCount;i++){
  		if(gkey=="") gkey = this.keys[i]+'='+this.values[i];
  		else gkey += "&"+this.keys[i]+'='+this.values[i];
  	}
  	if(purl.indexOf('?')==-1) purl = purl + '?' + gkey;
  	else  purl = purl + '&' + gkey;
  }
	DedeXHTTP.open("GET", purl, true); 
	this.SendHead();
  DedeXHTTP.send(null);
};

//用GET方式发送数据，阻塞模式
this.SendGet2 = function(purl){
	var gkey = "";
	var i=0;
	this.state = 0;
	if(this.keyCount!=-1){ //get参数
  	for(;i<=this.keyCount;i++){
  		if(gkey=="") gkey = this.keys[i]+'='+this.values[i];
  		else gkey += "&"+this.keys[i]+'='+this.values[i];
  	}
  	if(purl.indexOf('?')==-1) purl = purl + '?' + gkey;
  	else  purl = purl + '&' + gkey;
  }
	DedeXHTTP.open("GET", purl, false); 
	this.SendHead();
  DedeXHTTP.send(null);
  //firefox中直接检测XHTTP状态
  this.BarrageStat();
};

//用Post方式发送数据
this.SendPost2 = function(purl){
	var pdata = "";
	var i=0;
	this.state = 0;
	DedeXHTTP.open("POST", purl, false); 
	this.SendHead();
  if(this.keyCount!=-1){ //post数据
  	for(;i<=this.keyCount;i++){
  		if(pdata=="") pdata = this.keys[i]+'='+this.values[i];
  		else pdata += "&"+this.keys[i]+'='+this.values[i];
  	}
  }
  DedeXHTTP.send(pdata);
  //firefox中直接检测XHTTP状态
  this.BarrageStat();
};


} // End Class DedeAjax

//初始化xmldom
function InitXDom(){
  if(DedeXDOM!=null) return;
  var obj = null;
  if (typeof(DOMParser) != "undefined") { // Gecko、Mozilla、Firefox
    var parser = new DOMParser();
    obj = parser.parseFromString(xmlText, "text/xml");
  } else { // IE
    try { obj = new ActiveXObject("MSXML2.DOMDocument");} catch (e) { }
    if (obj == null) try { obj = new ActiveXObject("Microsoft.XMLDOM"); } catch (e) { }
  }
  DedeXDOM = obj;
};

function getElement(aID)
{
  return (document.getElementById) ? document.getElementById(aID): document.all[aID];
}

function CheckLogin(){
var taget_obj = document.getElementById('_loginform');
myajax = new DedeAjax(taget_obj,false,false,"","","");
myajax.SendGet("\/member\/loginsta.php");
myajax = null;
}


function InitAjax()
{
var ajax=false;
try {
ajax = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
ajax = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
ajax = false;
}
}
if (!ajax && typeof XMLHttpRequest!='undefined') {
ajax = new XMLHttpRequest();
}
return ajax;
}

function userLogin(){
var taget_obj = document.getElementById('_loginform');
var target_url = "/member/index_doaj.php?fmdo=login&dopost=login&userid=";

target_url += document.getElementById("userid").value;
target_url += "&pwd=";
target_url += document.getElementById("pwd").value;

var ajax = InitAjax();
ajax.open("GET", target_url, true);
ajax.onreadystatechange = function() {
	if (ajax.readyState == 4 && ajax.status == 200) {
		taget_obj.innerHTML = ajax.responseText;
	}
}
ajax.send(null);

}

function userLogout(){
var taget_obj = document.getElementById('_loginform');
var target_url = "/member/index_doaj.php?fmdo=login&dopost=exit&code=" + Math.random();
var ajax = InitAjax();
ajax.open("GET", target_url, true);
ajax.onreadystatechange = function() {
	if (ajax.readyState == 4 && ajax.status == 200) {
		myajax = new DedeAjax(taget_obj,false,false,"","","");
		myajax.SendGet("\/member\/loginsta.php");
	}
}
ajax.send(null);

}


function sendfeedback(){
var taget_obj = document.getElementById('feedbacklist');
var target_url = "/plus/feedback.php?action=send&isajax=yes";

target_url += "&userid=";
target_url += document.getElementById("username").value;
target_url += "&pwd=";
target_url += document.getElementById("pwd").value;
target_url += "&msg=";
target_url += document.getElementById("msg").value;
target_url += "&notuser=";
target_url += document.getElementById("notuser").checked;
target_url += "&arcID=";
target_url += document.getElementById("arcID").value;

var ajax = InitAjax();
ajax.open("GET", target_url, true);
ajax.onreadystatechange = function() {
	if (ajax.readyState == 4 && ajax.status == 200) {
		if ( ajax.responseText.indexOf("验证用户失败") != -1 )
		{
		window.alert("验证用户失败，请重新输入你的用户名和密码，或者选择“匿名评论”！");
		}else{
		taget_obj.innerHTML = ajax.responseText;
		window.alert("您的评论已经发表，如果没有显示，可能因为重复发表或者不雅言论！");
		}
	}
}
ajax.send(null);

}
function FeedbackCheckLogin(){
	var taget_obj = document.getElementById('msg');
	if (!taget_obj)	return false;
	//taget_obj.value="您已经登录，无需再输入用户名和密码，直接在此输入评论内容。";
	//taget_obj.onfocus=function(){this.value="";}
var target_url = "/member/loginsta.php";

var ajax = InitAjax();
ajax.open("GET", target_url, true);
ajax.onreadystatechange = function() {
	if (ajax.readyState == 4 && ajax.status == 200) {
		if ( ajax.responseText.indexOf("成功登陆") != -1 )
		{
		taget_obj.style.backgroundImage = "url(/templets/src/msg.gif)";
		taget_obj.onfocus=function(){this.style.backgroundImage = "url(/templets/src/msg2.gif)";}
		document.getElementById('username').value="********"; 
		document.getElementById('pwd').value="********"; 
		}else{
		//taget_obj.innerHTML = ajax.responseText;
		}
	}
}
ajax.send(null);
	
}

function showbizpic(event,_this,mess) {
    event = event || window.event;
    var t1="<table     cellspacing='1' cellpadding='10' style='border-color:#CCCCCC;background-color:#FFFFFF;font-size:14px;text-align:center;'><tr><td><img src='" + _this   + "' width='320' height='240' >    <br>"+mess+"</td></tr></table>";
	var imgobj = document.getElementById("a1");
   imgobj.innerHTML =t1;
   imgobj.style.top   = document.body.scrollTop + event.clientY - 300 + "px";
   imgobj.style.left = document.body.scrollLeft + event.clientX - 300 + "px";
   imgobj.style.display = "block";
}

function hide(_this) {
    document.getElementById("a1").innerHTML = "";
	document.getElementById("a1").style.display = "none";
}


function head(){
	document.write("<img src=/cache/topad.gif width=635 height=90 alt=\"弱电网QQ群:86556251\">");
}

function gglink01(){
}

function gglink02(){
	document.writeln("<div style='width:100%;text-align:center;background:#fff'><embed src=\"http://www.chinawe.net/plus/atd/3ait.swf\" width=\"635\" height=\"78\"  swliveConnect='true' type='application/x-shockwave-flash' PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer'  wmode='transparent' quality=high></embed></div></a>");
}

function adjs02(){
	document.writeln("<script type=\"text/javascript\">/*弱电门户网 336*280，创建于2011-7-14*/ var cpro_id = 'u540651';</script><script src=\"http://cpro.baidu.com/cpro/ui/c.js\" type=\"text/javascript\"></script>");
}

function ali02(){
	document.writeln("<div style='width:100%;text-align:center;background:#fff'><embed src=\"http://www.chinawe.net/plus/atd/3ait.swf\" width=\"635\" height=\"78\"  swliveConnect='true' type='application/x-shockwave-flash' PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer'  wmode='transparent' quality=high></embed></div></a>");
}


function gg468(){
if (0){
document.write("<CENTER><div ID='wangzhai' style='background:url(http://www.rswl.net/plus/img/gg468.gif) center no-repeat;border:1px solid #eee'><strong>　　　</strong>");
document.writeln("<a target=_self href=\"javascript:q=(document.location.href);void(open(\'http://www.zhuaxia.com/add_channel.php?url=\'+q,\'\',\'resizable,location,menubar,toolbar,scrollbars,status\'));\" target=\"_blank\"><img src=\"http://www.rswl.net/plus/img/bl468.gif\" border=\"0\" alt=\"订阅到抓虾\" /></a> <a target=\"_self\" href=\"javascript:void(open(\'http://www.xianguo.com/service/submitfav/?link=\'+encodeURIComponent(location.href)+\'&title=\'+encodeURIComponent(document.title),\'\',\'resizable,location,menubar,toolbar,scrollbars,status\'));\"><img src=http://www.rswl.net/plus/img/bl468.gif alt=\"添加到鲜果\" border=0 /></a> <a target=\"_self\" href=\"javascript:q=(document.location.href);void(open(\'http://www.digbuzz.com/submit.php?url=\'+escape(q),\'\',\'resizable,location,menubar,toolbar,scrollbars,status\'));\"><img src=http://www.rswl.net/plus/img/bl468.gif border=0 alt=\"Digbuzz我挖网\" title=\"添加到Digbuzz我挖网\" /></a> ");
document.writeln("<a target=_self href=\"javascript:var o=document.createElement('scri'+'pt');o.setAttribute('src','http://www.shouker.com/tools/comm/shoukertool.js.aspx');o.setAttribute('id','shouker_tool_scripts');o.setAttribute('type','text/javascript');o.setAttribute('charset','utf-8');document.body.appendChild(o);void(0);\"><img src=\"http://www.rswl.net/plus/img/bl468.gif\" alt=\"永久保存到收客网\" border=\"0\" /></a>");
document.writeln("<a href=\"javascript:d=document; metas=document.getElementsByTagName('meta');t=metas[2].content;if(window.clipboardData) clipboardData.setData('Text',t);window.open('http://shuqian.qq.com/post?from=3&title='+encodeURIComponent(document.title)+'&uri='+encodeURIComponent(document.location.href)+'&jumpback=2&noui=1','favit','resizable,location,menubar,toolbar,scrollbars,status');void(0)\" target=_self title='QQ书签'><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='QQ书签'></a>");
document.write("<a target=\"_self\" href=\"javascript:metas=document.getElementsByTagName('meta');t=metas[2].content;window.open('http://cang.baidu.com/do/add?it='+encodeURIComponent(document.title.substring(0,38))+'&iu='+encodeURIComponent(location.href)+'&dc='+encodeURIComponent(t.substring(0,120))+'&fr=ien#nw=1','_blank','resizable,location,menubar,toolbar,scrollbars,status'); void 0\" title=Baidu收藏><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='Baidu收藏'></a> ");
document.write("<a target=\"_self\" href=\"javascript:metas=document.getElementsByTagName('meta');t=metas[2].content;window.open('http://www.google.com/bookmarks/mark?op=add&bkmk='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title.substring(0,38))+'&annotation='+encodeURIComponent(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'); void 0\" title=\"google收藏\"><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='google收藏'></a> ");
document.write(" <a target=\"_self\" href=\"javascript:metas=document.getElementsByTagName('meta');t=metas[2].content;window.open('http://del.icio.us/save?jump=yes&notes='+encodeURIComponent(t)+'&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title),'_blank','resizable,location,menubar,toolbar,scrollbars,status'); void 0\" title=\"del.icio.us\"><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='del.icio.us'></a> ");
document.write(" <a target=\"_self\" href=\"javascript: metas=document.getElementsByTagName('meta');t=metas[2].content;mywebyx=document;mywebya=encodeURIComponent(mywebyx.location.href);mywebyt=encodeURIComponent(mywebyx.title);mywebyd=encodeURIComponent(t);open('http://myweb.cn.yahoo.com/popadd.html?src=iebookmark&url='+mywebya+'&title='+mywebyt+'&summary='+mywebyd,'_blank','resizable,location,menubar,toolbar,scrollbars,status');void(0);\" title=\"雅虎收藏\"><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='雅虎收藏'></a> ");
document.write(" <a target=\"_self\" href=\"javascript:d=document; metas=document.getElementsByTagName('meta');t=metas[2].content;void(vivi=window.open('http://vivi.sina.com.cn/collect/icollect.php?pid=28&title='+escape(d.title)+'&url='+escape(d.location.href)+'&desc='+escape(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));vivi.focus();\"><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='新浪ViVi收藏'></a> ");
document.write(" <a target=\"_self\" href=\"javascript:d=document; metas=document.getElementsByTagName('meta');t=metas[2].content;void(keyit=window.open('http://www.365key.com/storeit.aspx?t='+escape(d.title)+'&u='+escape(d.location.href)+'&c='+escape(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='365天天网摘'></a> ");
document.write(" <a target=\"_self\" href=\"javascript:d=document; metas=document.getElementsByTagName('meta');t=metas[2].content;void(wozhai=window.open('http://www.wozhai.com/wozhai/Cento.asp#t='+escape(d.title)+'&u='+escape(d.location.href)+'&c='+escape(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));wozhai.focus();\"><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='我摘'></a> ");
document.write(" <a target=\"_self\" href=\"javascript:d=document; metas=document.getElementsByTagName('meta');t=metas[2].content;void(keyit=window.open('http://my.poco.cn/fav/storeIt.php?t='+escape(d.title)+'&u='+escape(d.location.href)+'&c='+escape(t)+'&img=http://girl.8gul.cn/templets/img/tv8_logo.gif','_blank','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='POCO'></a> ");
document.write(" <a target=\"_self\" href=\"javascript:t=document.title;u=location.href;e=document.selection?(document.selection.type!='None'?document.selection.createRange().text:''):(document.getSelection?document.getSelection():'');void(open('http://bookmark.hexun.com/post.aspx?title='+escape(t)+'&url='+escape(u)+'&excerpt='+escape(e),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='和讯网摘'></a> ");

document.write("<a target=\"_self\" title=\"推荐到diglog\" href=\"javascript:d=document;s=d.location.href;metas=document.getElementsByTagName('meta');t=metas[2].content;void(keyit=window.open('http://www.diglog.com/submit.aspx?title='+escape(d.title.replace(/ -.*中国保健资讯网/,''))+'&url='+escape(s.replace('www.outdohealth.com','www.medicalhealth.com.cn'))+'&description='+escape(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='推荐到diglog'></a> ");

document.write("<a target=\"_self\" title=\"人人网摘\" href=\"javascript:d=document;s=d.location.href;metas=document.getElementsByTagName('meta');t=metas[2].content;void(keyit=window.open('http://www.renrenweb.com/bookmark.aspx?t='+escape(d.title)+'&u='+escape(s)+'&d='+escape(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='人人网摘'></a> ");

document.write("<a target=\"_self\" title=\"通摘\" href=\"javascript:d=document;s=d.location.href;metas=document.getElementsByTagName('meta');t=metas[2].content;void(keyit=window.open('http://share.allnet.cn/SaveIt.aspx?title='+escape(d.title)+'&url='+escape(s)+'&summary='+escape(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='通摘'></a> ");

document.write("<a target=\"_self\" title=\"推荐到乐收\" href=\"javascript:d=document;s=d.location.href;metas=document.getElementsByTagName('meta');t=metas[2].content;if(window.clipboardData) clipboardData.setData('Text',t);void(keyit=window.open('http://leshou.com/post?act=shou&reuser=&title='+encodeURIComponent(d.title)+'&url='+escape(s)+'&intro='+escape(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='乐收'></a> ");

document.write("<a target=\"_self\" title=\"推荐到纯我\" href=\"javascript:d=document;if(window.clipboardData) clipboardData.setData('Text',d.title);s=d.location.href;metas=document.getElementsByTagName('meta');t=metas[2].content;void(keyit=window.open('http://www.chunw.com/sc/index2.asp?u='+escape(s)+'&intro='+escape(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='纯我'></a> ");

document.write("<a target=\"_self\" title=\"收藏到奇虎口袋\" href=\"javascript:metas=document.getElementsByTagName('meta');t=metas[2].content;if(window.clipboardData) clipboardData.setData('Text',t);window.open('http://koudai.qihoo.com/reg_create.html?url='+escape(location.href)+'&title='+document.title,'_blank','resizable,location,menubar,toolbar,scrollbars,status'); void 0\"><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='奇虎口袋'></a> ");

document.write("<a target=\"_self\" href=\"javascript:metas=document.getElementsByTagName('meta');t=metas[2].content;window.open('http://www5.bolaa.com/CommendBlog/SmallCommend.aspx?title='+escape(document.title.substring(0,30))+'&link='+encodeURIComponent(location.href)+'&synopsis='+escape(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'); void 0\" ><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='博啦'></a> ");

document.write("<a target=\"_self\" href=\"javascript:metas=document.getElementsByTagName('meta');t=metas[2].content;window.open('http://fanfou.com/sharer?s=bl&t='+encodeURIComponent(document.title)+'&u='+encodeURIComponent(location.href)+'&d='+encodeURIComponent(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'); void 0\" ><img src=\"http://www.rswl.net/plus/img/bl468.gif\" alt=\"分享到饭否\" /></a>");

document.write(" <a target=\"_self\" href=\"javascript:d=document;s=d.location.href;metas=document.getElementsByTagName('meta');t=metas[2].content;if(window.clipboardData) clipboardData.setData('Text',t);void(keyit=window.open('http://digg.com/submit?phase=2&url='+encodeURIComponent(s)+'&title='+encodeURIComponent(d.title),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='Digg'></a> ");

document.write("<a  target=\"_self\" href=\"javascript:void(keyit=window.open('http://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title),'_self','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://www.rswl.net/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='Live Favorites'></a> ");

document.writeln("<a href=\"#\" onclick=\"var s=document.createElement('script');s.type='text/javascript';s.src='http://www.diigo.com/javascripts/webtoolbar/diigolet_b_h_b.js';document.body.appendChild(s);\"><img alt=\"diigo it\" src=\"http://www.rswl.net/plus/img/bl468.gif\" /></a>");

document.write("<a target=\"_self\" href=\"javascript:var js=document.createElement('script');if(typeof(js)!='object')js=document.standardCreateElement('script');js.type='text/javascript';js.src='http://www.gootou.com/js/fetch_page.js';document.getElementsByTagName('html')[0].appendChild(js);\" title=骨头收藏><img alt=\"骨头收藏\" src=\"http://www.rswl.net/plus/img/bl468.gif\" /></a> ");
document.write("</div></CENTER>");
}

document.writeln("<div align=\"left\" class=\"scaset\"><span style='float:right;color:red;font-size:14px'>本站官方超级群:105392354(验证消息：姓名+公司简称)</span>");
document.writeln("成功案例</div>");
document.writeln("<div align=\"left\" class=\"scase\">");
document.writeln(" <a href=\'http://www.3ait.net/anli/200906/25-1731.html\'>系统集成案例：开心网综合布线会议系统工程案例</a>");
document.writeln(" <a href=\'http://www.3ait.net/anli/200902/10-1135.html\'>安防监控案例：鸟巢配套变电所安防监控工程</a>");
document.writeln(" <a href=\'http://www.3ait.net/anli/200902/10-1134.html\'>弱电工程案例：百度网科技有限公司弱电改造项目</a>");
document.writeln(" <a href=\'http://www.3ait.net/anli/200902/10-1133.html\'>综合布线案例：同方鼎欣信息技术公司综合布线工程</a>");
document.writeln(" <a href=\'http://www.3ait.net/anli/200902/10-1132.html\'>综合布线案例：东易日盛企业综合布线工程</a>");
document.writeln(" <a href=\'http://www.3ait.net/anli/200902/10-1131.html\'>综合布线案例：李宁天津旗舰店综合布线工程</a>");
document.writeln(" <a href=\'http://www.3ait.net/anli/200810/29-38.html\'>机房建设：同方软件出口事业部沙河数据机房建设</a>");
document.writeln(" <a href=\'http://www.3ait.net/anli/200810/29-36.html\'>布线工程案例：康辰医药综合布线工程采影及客户评价</a>");
document.writeln("</div>");


}

function vodone(id){

	if (id==105 || id==15 || id==103 || id==117 || id==118) {
		document.writeln("<A HREF='http://www.lxfwq.com.cn/' target='_blank' title='深万科技专业销售服务器'><img src=/plus/atd/vip01.gif border=0></A>");
	}else if (id==104 || id==13 || id==102 || id==116){
		document.writeln("<A HREF='http://www.skjhj.com.cn/' target='_blank' title='蓝信科技专业代理思科 H3C网络产品'><img src=/plus/atd/vip02.gif></A>");
	}else if (id==98 || id==100 || id==101 || id==119 || id==122 || (id<=142 && id>=127) ){
		document.writeln("<A HREF='http://www.3ait.net/' target='_blank' title='北京深万科技 专注布线监控等弱电工程'><img src=/plus/atd/vip06.gif></A>");
	}else {
		document.writeln("<A HREF='http://www.3ait.net/' target='_blank' title='北京深万科技 专注布线监控等弱电工程'><img src=/plus/atd/vip06.gif></A>");
	}
document.writeln("<a href=\"http:\/\/weibo.com\/1846281595?s=6uyXnP\" target=\"_blank\"><img width=290 height=83 border=\"0\" src=\"\/templets\/images\/weibo0.gif\"\/><\/a>");
document.writeln("<iframe width=\"290\" height=\"25\" frameborder=\"0\" allowtransparency=\"true\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" frameborder=\"No\" border=\"0\" src=\"http:\/\/widget.weibo.com\/relationship\/followbutton.php?width=230&height=24&uid=1846281595&style=3&btn=red&dpc=1\"><\/iframe>");}

function adjs04(){
	document.write("<script src='/include/dedeajax3.js'></script>");
}

function adjs05(){
document.writeln("<iframe width=\"290\" height=\"290\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" frameborder=\"No\" border=\"0\" src=\"/plus/top10.php\"><\/iframe>");
}

function count(id){
}

function contact(id){
	document.writeln("	<a href=\"\/staff\/about_site.html\">网站介绍<\/a>&nbsp;|&nbsp; <a href=\"\/staff\/business.html\">广告服务<\/a>&nbsp;|&nbsp; <a href=\"\/staff\/agreement.html\">免责申明<\/a>&nbsp;|&nbsp; <a href=\"\/staff\/copyright.html\">版权声明<\/a>&nbsp;|&nbsp; <a href=\"\/staff\/privacy.html\">隐私政策<\/a>&nbsp;|&nbsp; <a href=\"\/staff\/about_health.html\">联系我们<\/a>&nbsp;|&nbsp; <a href=\"\/plus\/sitemap.html\">网站地图<\/a>&nbsp;|&nbsp; <a href=\"\/plus\/rssmap.html\">RSS<\/a> | ");
	var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://");
	document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3Fbd3b3f3b85ce7ccfa562718ca183183f' type='text/javascript'%3E%3C/script%3E"));
	document.writeln("<script type='text/javascript' src='http://js.tongji.linezing.com/625925/tongji.js'></script><noscript><img src='http://img.tongji.linezing.com/625925/tongji.gif'/></noscript>");
	//document.writeln('<script src="http://s9.cnzz.com/stat.php?id=2164494&web_id=2164494" language="JavaScript"></script>');
	document.writeln('<script src="/plus/count.php?aid='+id+'" language="javascript"></script>');
}


-->
