
function killErrors() {
return true;
}
window.onerror = killErrors;
function marquee1() 
{ 
document.write("<marquee behavior=scroll direction=up width=140 height=130 scrollamount=1 scrolldelay=60 onmouseover='this.stop()' onmouseout='this.start()'>") 
} 
function marquee2() 
{ 
document.write("</marquee>") 
} 
function checkType (f) {
    if (f.bakecookie.checked) rememberMe(f);
    return true;
   // if (f.bakecookie[1].checked) rememberAll(f);
}



	function mShow(obj){
	obj.style.display="block";
	obj.style.backgroundColor="#FEBF01";
	obj.style.borderColor="#BE8F00";
	obj.getElementsByTagName("a")[0].style.color="#000000";
	obj.getElementsByTagName("a")[0].style.backgroundcolor="#980000";
	obj.getElementsByTagName("img")[0].src="/images/lm_list2.jpg";	
	}
	function mHidden(obj){
		obj.style.backgroundColor="";
		obj.style.borderColor="";
		obj.getElementsByTagName("a")[0].style.color="";
		obj.getElementsByTagName("a")[0].style.backgroundcolor="";
		obj.getElementsByTagName("img")[0].src="/images/lm_list1.jpg";
	}

function mShow2(obj){

		obj.style.display="block";
		obj.style.backgroundColor="";	
		obj.style.backgroundImage='url(/images/bg_left_act.jpg)';
		obj.style.borderColor="#CDCDCD";
		obj.getElementsByTagName("a")[0].style.color="#FFFFFF";
		obj.getElementsByTagName("img")[0].src="/images/left_list2.jpg";
	}
	function mHidden2(obj){
		obj.style.backgroundColor="";
		obj.style.backgroundImage='';
		obj.style.borderColor="";
		obj.getElementsByTagName("a")[0].style.color="";
		obj.getElementsByTagName("a")[0].style.backgroundcolor="";
		obj.getElementsByTagName("img")[0].src="/images/left_list1.jpg";
	}


/********************************/
/*		文字自动循环滚动		*/
/*		不支持xhtml声明的文档	*/
/*		2005-05-24 v1.0			*/
/********************************/

//*********不要修改这部分***************
//scrollBodyId:	String 内部滚动div的id
//scrollBoxId:	String 外面限制div的id
//showHeight:	Int 限制显示高度
//showWidth:	Int 限制显示宽度
//lineHeight:	Int 每行的高度
//stopTime:		Int 间隔停止的时间（毫秒）
//speed:		Int 滚动速度（毫秒，越小越快）
var ScrollObj = function(scrollBodyId,scrollBoxId,showHeight,showWidth,lineHeight,stopTime,speed) {
	this.obj = document.getElementById(scrollBodyId);
	this.box = document.getElementById(scrollBoxId);
	
	this.style = this.obj.style;
	this.defaultHeight = this.obj.offsetHeight;
	
	this.obj.innerHTML += this.obj.innerHTML;
	this.obj.style.position = "relative";
	
	this.box.style.height = showHeight;
	this.box.style.width = showWidth;
	this.box.style.overflow = "hidden";
	
	this.scrollUp = doScrollUp;

	this.stopScroll = false;
	
	this.curLineHeight = 0;
	this.lineHeight = lineHeight;
	this.curStopTime = 0;
	this.stopTime = stopTime;
	this.speed = speed;

	this.style.top = lineHeight;

	this.object = scrollBodyId + "Object";
	eval(this.object + "=this");
	setInterval(this.object+".scrollUp()",speed);
	this.obj.onmouseover=new Function(this.object+".stopScroll=true");
	this.obj.onmouseout=new Function(this.object+".stopScroll=false");
}
function doScrollUp(){
	if( this.stopScroll == true )
		return;
  	this.curLineHeight += 1;
  	if( this.curLineHeight >= this.lineHeight ){
  		this.curStopTime += 1;
  		if( this.curStopTime >= this.stopTime ){
  			this.curLineHeight = 0;
  			this.curStopTime = 0;
  		}
  	}
	else{  	
	  	this.style.top = parseInt(this.style.top) - 1;
	  	if( -parseInt(this.style.top) >= this.defaultHeight ){
	    	this.style.top = 0;
	  	}
  	}
}
//***************这以上不要修改******************