document.charset = "utf-8";
var menuOffX=0	
var menuOffY=18	
var vBobjects = new Array();
var fo_shadows=new Array();
var linkset=new Array();
var boardid=0;
var ie4=document.all&&navigator.userAgent.indexOf("Opera")==-1
var ns6=document.getElementById&&!document.all
var ns4=document.layers
var xslDoc;
var cache={};
var xmlhttp = HttpObj();
var forumpath="./"
function HttpObj(){
	var xmlhttp = null;
	try{
		xmlhttp= new ActiveXObject('Msxml2.XMLHTTP');
	}catch(e){
		try{
			xmlhttp= new ActiveXObject('Microsoft.XMLHTTP');
		}catch(e){
			try{
				xmlhttp= new XMLHttpRequest();
			}catch(e){}
		}
	}
	if (xmlhttp) return xmlhttp;
}
function readCookie(name){
		var nameEQ = name + "=";
		var ca = document.cookie.split(';');
		for(var i=0;i < ca.length;i++) {
			var c = ca[i];
			while (c.charAt(0)==' ') c = c.substring(1,c.length);
			if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
		};
		return null;
	};
//图片自动调整的模式，1为按比例调整 ，2 按大小调整。
var resizemode=2;
function imgresize(o){
	if (resizemode==2 || o.onmousewheel){
		if(o.width > 500 ){
			o.style.width='500px';
		}
		if(o.height > 800){
			o.style.height='800px';
		}
	}
	else{
		var parentNode=o.parentNode.parentNode
		if (parentNode){
			if (o.offsetWidth>=parentNode.offsetWidth) o.style.width='98%';
		}
		else{
			var parentNode=o.parentNode
			if (parentNode){
				if (o.offsetWidth>=parentNode.offsetWidth) o.style.width='98%';
			}
		}
	}
}
function bbimg(o){
	var zoom=parseInt(o.style.zoom, 10)||100;zoom+=event.wheelDelta/12;if (zoom>0) o.style.zoom=zoom+'%';
	return false;
}
function boardbarover(obj)
{
	obj.className = obj.className.indexOf("mainbarhover")>0? "mainbar":"mainbar mainbarhover";
}
function getOffsetTop(elm) {
	var mOffsetTop = elm.offsetTop;
	var mOffsetParent = elm.offsetParent;
	while(mOffsetParent){
		mOffsetTop += mOffsetParent.offsetTop;
		mOffsetParent = mOffsetParent.offsetParent;
	}
	return mOffsetTop;
}

function getOffsetLeft(elm) {
	var mOffsetLeft = elm.offsetLeft;
	var mOffsetParent = elm.offsetParent;
	while(mOffsetParent) {
		mOffsetLeft += mOffsetParent.offsetLeft;
		mOffsetParent = mOffsetParent.offsetParent;
	}
	return mOffsetLeft;
}
function postUrl(poststyle,act,bid,stype){
	var thisUrl ="post.asp?poststyle="+poststyle+"&action="+act+"&boardid="+bid+"&stype="+stype;
	return thisUrl; 
}

function close_postform(){
			var obj=document.getElementById("post_div");
			if (obj.style.display!="none"){
			obj.style.display="none";
			document.getElementById("post_iframe").src="";
			}
}

function ActiveOnline(boardid)
{
	xmlhttp.onreadystatechange=function(){
		if(xmlhttp.readyState==4){
			if(xmlhttp.status==200){
				updateonline(xmlhttp.responseText);		
			}else{}
		}
	}
	var param="state="+escape(document.title.toString())+"&boardid="+boardid;
	xmlhttp.open("post","activeonline.asp",true);	
	xmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	xmlhttp.setRequestHeader("Content-Length",param.length); 
	xmlhttp.send(param);
}

function updateonline(XMLstr)
{
	eval(XMLstr);
	var AllOnlie=document.getElementById("allonline");
	var UserOnlie=document.getElementById("useronline");
	var GuestOnlie=document.getElementById("guestonline");
	if(AllOnlie) AllOnlie.innerHTML=allonline.toString();
	if(UserOnlie) UserOnlie.innerHTML=useronline.toString();
	if(GuestOnlie) GuestOnlie.innerHTML=guestonline.toString();

}

var cacheobj=function(){};
//浮动窗口效果
var ShadeDiv = {
	objid : null,
	Shade : document.createElement('div'),
	ShadeID : 'Shade',
	width : 400,
	height : 300,
	Position : function(){
		if (!ShadeDiv.objid){
			ShadeDiv.objid = null;
			return;
		}
		var de = document.documentElement;
		var w = window.innerWidth || self.innerWidth || (de&&de.clientWidth) || document.body.clientWidth;
		var ch = window.innerHeight || self.innerHeight || (de&&de.clientHeight) || document.body.clientHeight;
		if (self.pageYOffset) {
			var st = self.pageYOffset;
		} else if (document.documentElement && document.documentElement.scrollTop){	 // Explorer 6 Strict
			var st = document.documentElement.scrollTop;
		} else if (document.body) {// all other Explorers
			var st = document.body.scrollTop;
		}
		if (window.innerHeight && window.scrollMaxY) {	
			var sh = window.innerHeight + window.scrollMaxY;
		} else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
			var sh = document.body.scrollHeight;
		} else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari
			var sh = document.body.offsetHeight;
		}
		ShadeDiv.Shade.style.filter = 'progid:DXImageTransform.Microsoft.Alpha(opacity=60,finishOpacity=100,style=0)';
		ShadeDiv.Shade.style.height = (sh > ch ? sh : ch) + 'px';
		ShadeDiv.Shade.style.width = w + 'px';
		var pos = [], pw;
		pw = ShadeDiv.width;
		pos[0] = (w-pw)/2;
		pos[1] = (ch-(ShadeDiv.height || 300))/2 + st;
		//window.status="ch:"+ch+"st:"+st+"post[1]:"+pos[1]+"ShadeDiv.clientHeight"+ShadeDiv.objid.clientHeight;
		if (navigator.product && navigator.product == 'Gecko'){
			pw -= 40;
		}
		ShadeDiv.objid.style.width = ShadeDiv.width + 'px';
		ShadeDiv.objid.style.height = ShadeDiv.height + 'px';
		ShadeDiv.objid.style.left = pos[0] + 'px';
		ShadeDiv.objid.style.top = pos[1] + 'px';
		ShadeDiv.Shade.style.display = 'block';
		ShadeDiv.objid.style.display = 'block';
	},
	Show : function(id,w,h,src){
		ShadeDiv.height = parseInt(h);
		ShadeDiv.width = parseInt(w);
		ShadeDiv.Shade.id = ShadeDiv.ShadeID;
		ShadeDiv.objid = document.getElementById(id);
		document.body.insertBefore(ShadeDiv.Shade,null);
		ShadeDiv.Position();
		if (document.getElementById("iframeContent")) document.getElementById("iframeContent").src=src;
	},
	//如：<a href="#" onclick="ShadeDiv.ShowFrame('链接文件地址&sh=300&sw=500',this);" title="txt">test</a>
	ShowFrame  : function(link,linkobj){
		var gethref=link;
		if (!gethref){return;}
		if(gethref.indexOf("?")==-1){return;}
		var queryString = gethref.replace(/^[^\?]+\??/,'');
		var params = parseQuery( queryString );
		var sh,sw;
		var linktitle="";
		if (linkobj&&linkobj.title){
			linktitle = linkobj.title;
		};
		sw = (params["sw"]*1) || 650;
		sh = (params["sh"]*1) || 440;
		var ShadeFrame = document.createElement('div');
		ShadeFrame.id = ShadeDiv.ShadeID + "_frame";
		ShadeFrame.name = ShadeDiv.ShadeID + "_frame"+Math.round(Math.random()*1000);
		ShadeFrame.style.width = sw+"px";
		ShadeFrame.style.height = sh+"px";
		document.body.appendChild(ShadeFrame);
		var divhtml = "<div style='width:100%;height:26px; background:url(img/titlebg.jpg);float:right; text-align:right; line-height:26px;'><a href='#' onclick='ShadeDiv.Close();'>×</a>&nbsp;</div>";//  <img src='img/close.gif' alt='关闭' class='imgonclick' style='float:right;margin:5px 0 5px 0; cursor:hand;' onclick='ShadeDiv.Close();' />"+linktitle+"
		divhtml += "<iframe frameborder='0' hspace='0' src='' id='iframeContent' name='_iframeContent"+Math.round(Math.random()*1000)+"' style='width:"+sw+"px;height:"+(sh-30)+"px;'> </iframe>";
		ShadeFrame.innerHTML = divhtml;
		ShadeDiv.Show(ShadeFrame.id,sw,sh,gethref);
		//if (linkobj!="")linkobj.target=null;
		//return false;
	},
	Close : function(){
		if (ShadeDiv.objid==null){
			return;
		}
		ShadeDiv.Confirmed();
	},

	Confirmed : function() {
		ShadeDiv.objid.style.display = 'none';
		ShadeDiv.Shade.style.display = 'none';
		document.body.removeChild(ShadeDiv.objid);
		document.body.removeChild(ShadeDiv.Shade);
		
	}

}


//页面完成后加载事件列表
function page_init(){
	
}

//url参数分割
function parseQuery ( query ) {
   var Params = {};
   if ( ! query ) {return Params;}// return empty object
   var Pairs = query.split(/[;&]/);
   for ( var i = 0; i < Pairs.length; i++ ) {
      var KeyVal = Pairs[i].split('=');
      if ( ! KeyVal || KeyVal.length != 2 ) {continue;}
      var key = unescape( KeyVal[0] );
      var val = unescape( KeyVal[1] );
      val = val.replace(/\+/g, ' ');
      Params[key] = val;
   }
   return Params;
}

/* style.js */

function reSize(_value)
{
		var stylemsg=document.getElementById("stylemsg");
		var ivalue = parseInt(_value)
		if(isNaN(ivalue))
		{
			stylemsg.innerHTML="设置的宽度必须是数字";
		}
		else
		{
			if(ivalue <900)
			{
				stylemsg.innerHTML="设置的宽度必须大于900像素";
			}
			else
			{
				if(ivalue >5000)
				{
					stylemsg.innerHTML="设置的宽度不可以大于5000像素";
				}
				else
				{
					createCookie(styleStr+"width",ivalue,365)
					location.reload();
				}
			}
		}
}
function getWidth()
{
		var cookie = parseInt(readCookie(styleStr+"width"))
		if(cookie){
			if(!isNaN (cookie))
			{
					document.getElementById("stylewidth").value=cookie;
			}
		}
}