function _gel(a)
{
    return document.getElementById?document.getElementById(a):null;
};
function _gelstn(a)
{
    return document.getElementsByTagName?document.getElementsByTagName(a):new Array();
};
function _geln(a)
{
    return document.getElementsByName?document.getElementsByName(a):new Array();
};
function _copyToClip(strUrl)
{
    window.clipboardData.setData('text',strUrl);
    alert("复制成功，你可以添加到你QQ/MSN个人资料，也可以发给你好友欣赏");
};
function _sendToFav(a)
{
    window.external.AddFavorite(a,document.title);
};
function _setHomepage(a,b)
{
    _gel(a).style.behavior='url(#default#homepage)';
    _gel(a).setHomePage(b);
};
function fGetCookie(name)
{
    var cookieValue="";
    var search=name+"=";
    if(document.cookie.length>0)
    {
        offset=document.cookie.indexOf(search);
        if(offset!=-1)
        {
            offset+=search.length;
            end=document.cookie.indexOf(";",offset);
            if(end==-1)end=document.cookie.length;
            cookieValue=unescape(document.cookie.substring(offset,end));
        };
    };
    return cookieValue;
};
function fSetCookie(name,value,hours)
{
    var expire="";
    var domain="; domain=56.com";
    if(hours!="")
    {
        expire=new Date((new Date()).getTime()+hours*1*24*3600000);
        expire="; expires="+expire.toGMTString();
    };
    document.cookie=name+"="+escape(value)+expire+domain;
};
function _crtMenu(parObjId,orgObjId,offsetTop,offsetLeft,width,height,className,strHtml)
{
    var e=_gelstn("body")[0];
    var f=_gel(orgObjId);
    if(f)e.removeChild(f);
    var a=_gel(parObjId);
    var b=a.offsetTop;
    var c=a.offsetLeft;
    var d=document.createElement("DIV");
    d.style.position="absolute";
    d.style.top=b+offsetTop+"px";
    d.style.left=c+offsetLeft+"px";
    d.style.width=width+"px";
    d.style.height=height+"px";
    d.style.zIndex=40;
    d.setAttribute("id",orgObjId);
    if(className)
    {
        if(r)
        {
            d.setAttribute("className",className);
        }else
        {
            d.setAttribute("class",className);
        };
    };
    e.appendChild(d);
    d.innerHTML=strHtml;
    document.onclick=function()
    {
        if(_gel(orgObjId))e.removeChild(_gel(orgObjId))
    };
};
function _crtAlert(id,width,height,strHtml)
{
    var a=document.createElement("DIV");
    var b=_gelstn("body")[0];
    if(_gel(id))b.removeChild(_gel(id));
    a.style.position="absolute";
    a.style.left=(window.screen.availWidth-width)/2;
    a.style.top=(window.screen.availHeight-height)/3;
    a.style.width=width+"px";
    a.style.height=height+"px";
    a.style.backgroundColor="#FFFFFF";
    a.style.border="2px solid #F5F5F5";
    a.style.zIndex=20;
    a.setAttribute("id",id);
    a.style.padding="3px";
    b.appendChild(a);
    a.innerHTML=strHtml;
    window.scrollTo(0,0);
};
function _delDiv(a)
{
    var b=_gel(a);
    if(b)_gelstn("body")[0].removeChild(b);
};
function _cel(a)
{
    _delDiv(a);
};
function _crtNewMailMsgBox(num)
{
    var a=document.createElement("DIV");
    var b=_gelstn("body")[0];
    var c='<div style="background:url(http://www.56.com/space/imgs/all/newmail_bg.gif) no-repeat;height:160px;width:260px"><div style="float:right;cursor:hand;margin:3px 8px;width:20px;height:20px" onclick="fCloseNewMail(\'newmaidiv\')"></div><div style="margin:80px 10px auto;text-align:center">您收到了&nbsp;'+num+'&nbsp;封新邮件！[<a id="aget1" onclick="fCloseNewMail(\'newmaidiv\')" href="http://'+gLoginHost+'/mail/ursmail.56">收取</a>]</div><div style="float:right;width:80px;margin-right:5px;margin-top:40px;cursor:hand" onclick="_gel(\'aget1\').click()"></div></div>';
    var d=_gel("newmaidiv");
    if(d)b.removeChild(d);
    a.style.position="absolute";
    a.style.top=document.body.offsetHeight-160;
    a.style.left=document.body.offsetWidth-260;
    a.style.width="260px";
    a.style.height="160px";
    a.setAttribute("id","newmaidiv");
    b.appendChild(a);
    a.innerHTML=c;
    _startScrollDiv("newmaidiv",160,260);
};
function _crtSysMessage(d)
{
    var a=document.createElement("DIV");
    var b=_gelstn("body")[0];
    var c=_gel("sysmsg");
    if(c)b.removeChild(c);
    a.style.position="absolute";
    a.style.top=document.body.offsetHeight-160;
    a.style.left=document.body.offsetWidth-260;
    a.style.width="260px";
    a.style.height="160px";
    a.setAttribute("id","sysmsg");
    b.appendChild(a);
    a.innerHTML=d;
    _startScrollDiv("sysmsg",160,260);
};
var gTimeout=new Array();
function _startScrollDiv(a,b,c)
{
    var d=_gel(a);
    d.style.top=(document.body.scrollTop?document.body.scrollTop:document.documentElement.scrollTop)+((document.documentElement.clientHeight==0)?document.body.clientHeight:document.documentElement.clientHeight)-b+'px';
    d.style.left=((document.documentElement.clientWidth==0)?document.body.clientWidth:document.documentElement.clientWidth)-c+'px';
    gTimeout[a]=window.setTimeout("_startScrollDiv('"+a+"',"+b+","+c+")",50);
};
function _StopScrollDiv(a)
{
    if(gTimeout[a]!=null)window.clearTimeout(gTimeout[a]);
};
function _createXMLHttp()
{
    var ret = null;
    try {
        ret = new ActiveXObject('Msxml2.XMLHTTP');
    }catch (e) {
        try {
            ret = new ActiveXObject('Microsoft.XMLHTTP');
        }
        catch (ee) {
            ret = null;
        }
    }
    if (!ret && typeof XMLHttpRequest != 'undefined')
        ret = new XMLHttpRequest();
	return ret;
};
function _cc(a)
{
    var xmlhttp=_createXMLHttp();
    xmlhttp.open("GET",a);
    xmlhttp.send(null);
};
function _cspace(a)
{
    var b="http://tuya.56.com/null.html?x="+a;
    try
    {
        _gel("CountClick").src=b;
    }catch(ex){};
};
function _ShareToFriend(a)
{
    //document.write('<iframe onload="fHiddenLoading()" src="http://m100.56.com/share_send.html?'+a+'" marginwidth="0" marginheight="0" frameborder="0" width="660" height="320"></iframe>');
};
function fZoomPlayer(a)
{
    var fs=window.open("http://v.56.com/flv_player_full_screen.swf?"+a,"FullScreenVideo","toolbar=no,width=640,height=525,status=no,resizable=no,fullscreen=no,scrollbars=no");
    fs.focus();
};
function uPanel(obj,id,width,height,offsetX,offsetY,className,show,strHtml)
{
    var a=_gel(id);
    var b=_gelstn("body")[0];
    if(a)b.removeChild(a);
    var c=document.createElement("DIV");
    c.setAttribute("id",id);
    c.setAttribute("className",className);
    c.style.position="absolute";
    c.style.left=obj.offsetLeft+offsetX+"px";
    c.style.top=obj.offsetTop+offsetY+"px";
    if(width!=-1)c.style.width=width+"px";
    if(height!=-1)c.style.height=height+"px";
    b.appendChild(c);
    c.innerHTML=strHtml;
    window.event.cancelBubble=true;
    b.onclick=function()
    {
        if(_gel(id))b.removeChild(_gel(id))
    };
    c.onclick=function()
    {
        window.event.cancelBubble=show
    };
};
function uAlert()
{
    
};
function uMsgBox()
{
    
};
function isFunction( fn ) 
{
	return !!fn && typeof fn != "string" && !fn.nodeName && fn.constructor != Array && /function/i.test( fn + "" );
};
function JsLoad(url,charset) 
{
	var script = document.createElement( 'script' );
	script.charset  = charset;
	script.type     = 'text/javascript';
	script.src 	    = url;
	document.getElementsByTagName('HEAD')[0].appendChild(script,null);
	return script;
}
function CssLoad(url)
{
	var css = document.createElement( 'link' );
	css.rel='stylesheet';
	css.type='text/css';
	css.href=url;
	document.getElementsByTagName('head')[0].appendChild(css);
}
//数组扩展
var jQuery = jQuery || {};
Array.prototype.indexOf = function(o){var l = this.length;for (var i = 0; i < l; i++){if (this[i] == o){return i;}}return -1;};
Array.prototype.remove  = function(n){this.splice(n,1);};
Array.prototype.replace = function(n,vars){this.splice(n,1,vars);};
Function.prototype.defer= function(C,A){var B=this;if(A){window.setTimeout(function(){B.call(A);},C);}else {window.setTimeout(this,C);}};
jQuery.cookie = function(name, value, options) 
{
	if (typeof value != 'undefined') 
	{ // name and value given, set cookie
		options = options || {expires:1,path:"\/"};
		var expires = '';
		if (options.expires && (typeof options.expires == 'number' || options.expires.toGMTString)) 
		{
			var date;
			if (typeof options.expires == 'number') 
			{
				date = new Date();
				date.setTime(date.getTime() + (options.expires * 60 * 60 * 1000));
			} else 
			{
				date = options.expires;
			}
			expires = '; expires=' + date.toGMTString(); // use expires attribute, max-age is not supported by IE
		}
		var path = options.path ? '; path=' + options.path : '';
		var domain = options.domain ? '; domain=' + options.domain : '';
		var secure = options.secure ? '; secure' : '';
		document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
	} else 
	{ // only name given, get cookie
		var cookieValue = '';
		if (document.cookie && document.cookie != '') 
		{
			var cookies = document.cookie.split(';');
			for (var i = 0; i < cookies.length; i++) 
			{
				var cookie = cookies[i].replace(/^\s+|\s+$/g, "");
				// Does this cookie string begin with the name we want?
				if (cookie.substring(0, name.length + 1) == (name + '=')) 
				{
					cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
					break;
				}
			}
		}
		return cookieValue;
	}
};
var _  =
{
	"map":function(vars,func){func(vars);},
	"rand":function(begin,end){if(typeof begin !='undefined'){end = end?end:2147483648;return Math.floor(Math.random()*(end-begin)+begin);}else{a = new Date();return a.getTime();}},
	"r":function(vars){document.write(vars)},
	"e":function(){var elements = [];for (var i = 0; i < arguments.length; i++){var element = arguments[i];if (typeof element == 'string')element = document.getElementById(element);if (arguments.length == 1)return element;elements.push(element);}return elements;},
	"get":function(name){var get  =location.search||location.hash;var start	=get.indexOf(name + '=');if (start == -1) return '';var len = start + name.length + 1;var end = get.indexOf('&',len);if (end == -1) end = get.length;return unescape(get.substring(len,end));},
	"getCookie":function(name){return jQuery.cookie(name);},
	"setCookie":function(name, value, hours,domain){var options = {};if(hours)options.expires=hours;if(domain)options.domain=domain;options.path="\/";jQuery.cookie(name,value,options);},
	"copy":function(vars,note){note=note||'网址复制成功!';window.clipboardData.setData('text',vars);if(note)alert(note);},
	"rehide":function(obj1, obj2){try{obj1	= this.e(obj1);obj2	= this.e(obj2);if(obj1.style.display==''){$(obj1).hide("slow");$(obj2).show();}else{$(obj2).hide("slow");$(obj1).show();}}catch (e){}},
	"gowin":function(url,t,note){if(note)if(!window.confirm(note))return;if(t){top.document.location.href =url;}document.location.href = url;},
	"checkboxAll":function(a,b){b = b ? b['checked'] : true;a['checked'] = b;	for(var i=0;i<a.length;i++)a[i]['checked'] = b;},
	"checkboxChkFrom":function(a,note)	{note  = note || "提示:\n\t删除将无法恢复!您确定要删除所选吗？\t\n";var b = false;	if(a['checked'])b = true;for(var i=0;i<a.length;i++){	if(a[i]['checked']){ b = true;	break;	}};if(b) if(confirm(note)) return true;return false;},
	"time":function(a,b){var s,d;	if(b==1){d = new Date(a*1000);	s = d.getYear() + "-";  s += (d.getMonth() + 1) + "-";s += d.getDate();}else{d = new Date(a*1000);s = d.getYear() + "-"; s += (d.getMonth() + 1) + "-";	s += d.getDate()+ " ";s += d.getHours() + ":";s += d.getMinutes() + ":";s += d.getSeconds();};	return s;},
	"substr":function(s,n)	{s = s.toString();if(s){n = n||20;if(s.length > n){return s.substr(0,n)+'..';	}}return s;	},
	"size":function(a){var b;if(a<1024){b = 'Bit';}else if(a<1024*1024 && a>1024){a = a/1024;b = 'K';}else if(a<1024*1024*1024 && a>1024*1024){a = a/1024/1024;b = 'M';}else{a = a/1024/1024/1024;b = 'G';};return (Math.round(a*100)/100)+b;},
	"player":function(v,p,w,h,id){p = p || 'http://www.56.com/flashApp/v_player_site_fp7_5_20061219.swf';w = w || '100%';h = h || '100%';var wl = this.get('wl') || 0;return '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="'+(id||'object_flash_player')+'" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+w+'" height="'+h+'"><param name="movie" value="'+(wl?p+'?'+v:p)+'"><param name="quality" value="high"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" />'+(wl?'':'<param name="FlashVars" value="'+v+'" />')+'<embed src="'+(wl?p+'?'+v:p)+'"  '+(wl?'':'flashvars="'+v+'"')+' quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"  width="'+w+'" height="'+h+'"></embed></object>';},
	"do":function(e,fn)
	{
		var a = this.e(e+'_loading');
		//if(a)
		//{
			//$(a).show('slow');
		//}else
		//{
		//	$('#'+e).prepend('<div id="'+e+'_loading" style="text-align:center"><img src="http://www.56.com/space/imgs/all/loading.gif" alt="数据加载中..."  align="absmiddle" /> 数据加载中... '+(fn?'[<a href="javascript:'+fn+'">刷新</a>]':'')+'</div>');
		//}
	},
	"err":function(a,data,user,woman){data = (typeof data =='object')?data:data||{"flv":"http://www.56.com/v/img/flv_no_photo.gif","user":"http://www.56.com/v/img/user_no_photo.gif","women":"http://www.56.com/space/imgs/all/thu_woman.gif"};if(user){if(woman){a.src=data.woman;}else{a.src=data.user;}}else{a.src=data.flv;}},
    "phost":function(a,b)
    {
        if(b)
        {        
            var c = {0:'u',1:'u',2:'l',3:'p'};
            if(b==1 || b==2 || b ==3)b = c[b];
            return "http://www.56.com/"+b+(a%88+11);
        }else
        {
            var rs = 0,l=a.length,i;for(i=0;i<l;i++)rs+=a.charCodeAt(i);
            return "http://www.56.com/w"+(rs%88+11);
        }
    },
	"getEnId":function(url)
	{
		url=url||location.href;
		return url.indexOf('/v_')==-1
			?(url.indexOf('id=')==-1
				?''
				:url.split('id=')[1].split('&')[0])
			:url.split('/v_')[1].split('.')[0];
	}
};
var _c = 
{
    "sendSms":function(user_id,Subject,Content)
	{
		window.open("http://www.56.com/admin/?http://msg.56.com/fasong.php?to="+user_id);
	},
	"userUrl":function(user_id,s)
	{
	    s = s || 'site';
	    return  s == 'site'
					? _.phost(user_id)+'/show_user.php?user_id='+a
					: _.phost(user_id)+'/spaceListUser.php?user_id='+a;	
	},
	"flvUrl":function(EnId,pct,id,s)
	{
		s = s || 'site';
		return s == 'site'
		            ? _.phost(id,pct)+'/v_'+EnId+'.html'
					: _.phost(id,pct)+'/spaceDisplay.php?user_id='+EnId;
	}	
}
var usr =
{
	"gLoginId":_.getCookie("member_id"),											//登录用户ID
	"gLoginHost":_.getCookie("host"),												//登录主机名
	"gLoginPass":_.getCookie("pass_hex"),											//pass
	"gLoginMember":"a",//_.getCookie("member_login"),										//member_login
	"gNewMail":_.getCookie("newmail") || 0,											//新邮件
	"gNewMsg":_.getCookie("newmsg") || 0,
	"gKeepMail":_.getCookie("keepmail"),											//是否检查邮件的标示
	"gLoginUser":function(){return this.gLoginId.substring(0,this.gLoginId.indexOf("@"))},				//登录用户名
	"user_id":function(){return this.gLoginUser();},
	"photo":function(u,b){var a1 = 0,a2 =0,i,rs;u=u||this.gLoginUser();for (i= 0; i< u.length; i++){a1 += u.charCodeAt(i) * i; a2 += u.charCodeAt(i) * (i * 2 + 1);}a1 %= 100;a2 %= 100;rs  = 'http://v.56.com:88/photo/' + a1 + "/" + a2 + "/";if (b){return rs + u + "_b_56.com_.jpg";} else{return rs + u + "_56.com_.jpg";}},
	"gIsLogin":function(){return (_.getCookie("host") != "" && _.getCookie("member_id") != "" && _.getCookie("pass_hex") !="" && _.getCookie("member_id").indexOf('guest') != 0 )?true:false;},
	"gIsHomepage":function(){var gh =window.location.host;if(gh=='www.56.com'||gh=='56.com'){return true;} else {return false;	}}
};
//Json
var oJson = {};
var fJson = 
{
	"varName":{},//设定变量名
	"data":{},	 //[0,y,yes,空值]:默认,[-1,n,no]:不运行flush(),
	"file":{},	 //附加js代码文件
	"str":{},	 //附加JS代码
	//------------------//
	"jsonId":{},
	"set":function(element,vars)
	{
		for(key in vars)
		{
			this[key][element] = vars[key];
		}
	},
	"get":function(url,element,type)
    {
        if(!this[element]) this[element]={};
        this[element].mode = type;
        this.main(url,element);
    },
	"getUrl":function(url,element)
	{
	    element = element || 'element';
	    this.set(element,{"data":"n"});
	    this.main(url,element);
	},
	"main":function(url,element,un)
	{
		this.__url__ = url;
		this.__element__ = element;
		this.__un__ = un;
		eval("oJson['"+element+"'] = this.include()" );
	},
	"getSrc":function(element)
	{
		var rs = '';
		if(this.varName[element])
		{
			rs +='&gJsonVarName='+encodeURI(this.varName[element]);
		}
		if(this.data[element])
		{
			if(this['data'][element] == 'n' || this['data'][element] == '-1' || this['data'][element] == 'no')
			{
				rs +='&gJsonData=n';
			}
		}
		if(this['str'][element])
		{
			rs +='&gJsonDoStr='+encodeURI(this['str'][element]);
		}
		if(this['file'][element])
		{
			rs +='&gJsonDoFile='+encodeURI(this['file'][element]);
		}
		return rs;
	},
	"include":function(url,element,un)
	{
		url       = url || this.__url__;
		element   = element || this.__element__ || 'script';
		un        = un || this.__un__ || false;
		
		var jsonId = this.__getJsonId(element),a;
		if(navigator.appVersion.indexOf("MSIE") == -1 || element == 'script')
		{
			a			= document.createElement('script');
		}else
		{
			a			= document.getElementById("script_"+element+((jsonId >1)?'_'+jsonId:''));
			if(!a)
			{
				a		= document.createElement('script');
				a.setAttribute("id","script_"+element+((jsonId >1)?'_'+jsonId:''));
			}
		}
		var b			= document.getElementsByTagName('HEAD').item(0);
		a.un			= un;
		a.data 			= '';
		a.type 			= "text/javascript"; 
		a.src			= url+((url.indexOf('?') == -1 )?'?':'&')+'gJsonId='+jsonId+'&gJson='+element+fJson.getSrc(element);
		b.appendChild(a,null);
		return a;
	},
	"css":function(url)
	{
		if(!url) return;
		var a			= document.createElement('link');
		var b			= document.getElementsByTagName('HEAD').item(0);
		a.rel			= "stylesheet";
		a.type			= "text/css";
		a.charset  		= "gb2312";
		a.href			= url;
		b.appendChild(a,null);
	},
	"__getJsonId":function(element)
    {
        if(this.jsonId[element])
        {
           var i=0;
           do
           {
               i++;
               if(!this.jsonId[element][i])
               {
                   
                   this.jsonId[element][i] = 1;
                   return i;
               }
           }while(1);
        }
        this.jsonId[element]    ={};
        this.jsonId[element][1] = 1;
        return 1;
    },
	"flush":function(element)
	{
        document.getElementById(element).innerHTML = oJson[element].data[this[element].mode];
        oJson[element] ={};
    }
};
var Tpl = function(o,element,tpl)
{
	if(/\[%/.test(element)||/\/\*%/.test(element)||/<%=/.test(element)||/\{%/.test(element)||/<!--%/.test(element) )
	{
		return doTpl(o,formatTpl(element),0);
	}else
	{
		var obj = document.getElementById(element);
		if (!obj) return tpl || element;
		var tHtml = obj.oldHTML = obj.oldHTML || formatTpl(tpl) || formatTpl(obj.innerHTML);
		obj.innerHTML 		= doTpl(o,tHtml,0);
		obj.style.display 	= "";
		//jQuery(obj).find('#'+element+'_loading').hide('slow');
		return this;
	}
	
	function formatTpl(str)
	{
		return str?str.replace(/\[%/g,"<%").replace(/%\]/g,"%>")
				   .replace(/\{%/g,"<%").replace(/%\}/g,"%>")
				   .replace(/<!--%/g,"<%").replace(/%-->/g,"%>")
				   .replace(/\/\*%/g,"<%").replace(/%\*\//g,"%>"):false;
	};
    function doTpl(data,tHtml,xLev)
	{
		var xLev			= xLev || 0;
		var sRepeat			= "<%begin_"+xLev+"[^>]*%>((.|\\n)+?)<%end_"+xLev+"%>";
		var rKey_g			= new RegExp("<%begin_"+xLev+"\\s*key=\"([^\"]+)\"[^%]*%>","g");
		var rRepeat			= new RegExp(sRepeat);
		var rRepeat_g		= new RegExp(sRepeat,"g");
		var rVars			= new RegExp("<%=(.+?)%>","g");
		var tDate;
		// 是否有重复
		var aKey = tHtml.match(rKey_g);
		if(aKey)
		{
			var aRepeat = tHtml.match(rRepeat_g);
			for (var key=0;key<aKey.length;key++)
			{
				aKey[key] 		= aKey[key].replace(rKey_g,"$1");
				aRepeat[key] 	= aRepeat[key].replace(rRepeat,"$1");
				tDate			= data[aKey[key]];
				var html		= '';
				for(var key2 in tDate)
				{
					html += typeof tDate[key2] == "object" ? doTpl(tDate[key2],aRepeat[key],xLev+1) : "";
				}
				tHtml				= tHtml.replace(rRepeat,html);
			}
		}
		var aVars = tHtml.match(rVars);
		if(aVars)
		{
			for (key=0;key<aVars.length;key++)
			{
				aVars[key]		= aVars[key].replace(rVars,"$1");
				tDate 			= data[aVars[key]]?data[aVars[key]]:'';
				var rVars_		= new RegExp("<%="+aVars[key]+"%>");				
				tHtml			= tHtml.replace(rVars_,tDate);
			}
		}
		return tHtml;
	}
};
var oTpl =
{
	"tpl":function(el,o)
	{
		var a = document.getElementById(el);
		Tpl(o,el,'<div class="SysKuan tright">[%=nextPage%]</div><!--%begin_0 key="data"%--><div class="LeaveWord"><div class="cmf"><div style="float:left;"><a style="font-weight: bold" href="/*%=userSpace%*/" target="_blank">[%=userName%]</a></div><div class="MsgIco" onclick="/*%=sendMsg%*/"></div> [[%=commentTime%]] [%=dataNote%] 说: </div><div class="cmt"> [%=UserImg%] <div id="LC_/*%=id%*/" class="leave">[%=content%]</div> [%=revert%] </div><div class="date">[%=commentOption%]</div></div><!--%end_0%--><div class="SysKuan tright">[%=nextPage%]</div>');
		a.innerHTML = a.innerHTML.replace(/http:\/\/56com\.v\.56\.com/g,"http://dvspace.v.56.com");
	    o = null;
		//free();
	}
};
