//<![CDATA[
//AUTHOR:JULLYCAT(ZHANGYANJUN)

/**获取DOM中id
 * @param {object} id 获取的id值
 */

$=function(id){
	return document.getElementById(id);
}

/**自定义多重类对象
 * @param {Object} namespace 自定义类名
 */
Namespace = new Object();
Namespace.register = function(namespace){
	var nsArray = namespace.split('.');
	var sEval = "";
    var sNS = "";
	for (var i = 0; i < nsArray.length; i++){
        if (i != 0) sNS += ".";
        sNS += nsArray[i];
        sEval += "if (typeof(" + sNS + ") == 'undefined') " + sNS + " = new Object();"
    }
    if (sEval != "") eval(sEval);
}

/**
 * 对数组Array对象扩展unite方法；
 * @method unite 类似concat，但FF不支持concat；
 * @param (arg) arg是需要增加的数组对象；
 */
Array.prototype.unite = function(arg){
	var temparg = new Array();
	var len1 = this.length;
	var len2 = arg.length;
	for(var i=0;i<(len1+len2);i++){
		if(i<len1) this[i] = this[i];
		else this[i] = arg[i-len1];
	}
	return this;
}

/**
 * 给数组扩展add方法.
 * @method add 类似push,需要增加的元素同元数组进行比较，如果没有相同值则追加，如果有则不追加;
 * @param {Object} obj 需要add的对象.
 */
Array.prototype.add = function(obj){
	var add_flag = true;
	for(var i=0;i<this.length;i++){
		if(this[i]==obj){
			add_flag = false;
			break;
		}
	}
	if(add_flag==true){
		this[this.length] = obj;
	}
}

//]]><style type="text/css">
<!--
.bootm_0 {
	font-size: 12px;
	width: 977px;
	margin-right: auto;
	margin-left: auto;
        text-align: center;
}
noscript {
	font-size: 12px;
}
a:link {
	color: #CC0000;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: none;
}
-->
</style>
<div class="bootm_0">
  <div id="footer">
    <div align="center">
  <p><a href="http://member.zgqyb.com/reg.asp" target="_blank"><strong>ҵע</strong></a>|<a href="http://member.zgqyb.com/guanli.asp" target="_blank"><strong>ҵ</strong></a>|<a href="http://member.zgqyb.com/get_pass.asp" target="_blank"><strong>һ</strong></a></p>
  <ul>
    <div align="center"><a title="ڣ2012-3-1" href="http://www.w798.com" target="_blank">ȫ׬</a><a title="ڣ2012-3-1" href="http://yellow.w798.com" target="_blank">ҵ </a><a title="ڣ2011-10-1" href="http://www.0760-dejia.com" target="_blank">¼ѹ </a><a title="ڣ2012-3-1" href="http://baike.w798.com" target="_blank">ٿ֪ʶȫ </a><a title="ڣ2012-3-1" href="http://www.google.com" target="_blank">ȸ </a><a title="ڣ2012-3-1" href="http://www.baidu.com" target="_blank">ٶһ </a><a title="ڣ2012-3-1" href="http://www.520838.cn" target="_blank"> </a><a title="ڣ2012-5-1" href="http://www.dzled.com" target="_blank">йLEDϢ </a><a title="ڣ2012-7-1" href="http://www.haojiuqu.com" target="_blank">þȥվ </a> </div>
  </ul>
  <p>&copy; 2005-2011 йҵɹٷվ(<a href="http://www.zgqyb.com/">www.zgqyb.com</a>) Ȩ All rights reserved&nbsp;&nbsp;վδȨʹã׷εȨ <br />
    <font style="FONT-SIZE: 16px">&nbsp;</font><font>ICP11046656</font>&nbsp;&nbsp;</FONT>&nbsp;&nbsp;<font style="FONT-SIZE: 14px">ϵ</font>QQ263670012&nbsp;&nbsp;Email<a href="mailto:zgqy798@163.com/">zgqy798@163.com</a>&nbsp;&nbsp;
    &nbsp;<script language="javascript" type="text/javascript" src="http://js.users.51.la/5092351.js"></script>
   <noscript> <a href="http://www.51.la/?5092351" target="_blank"><img alt="&#x6211;&#x8981;&#x5566;&#x514D;&#x8D39;&#x7EDF;&#x8BA1;" src="http://img.users.51.la/5092351.asp" style="border:none" /></a>
</noscript>
    </div>
  </div></div>



