function FetchCookie(name){	
	var start=document.cookie.indexOf(name);	
	var end=document.cookie.indexOf(";",start);	
	return start==-1 ? null : unescape(document.cookie.substring(start+name.length+1,(end>start ? end : document.cookie.length)));
}
/*
1区背景颜色修改：
未登陆   #CCE7FF
登陆初级 #DBEAFF
登陆高级 #D7D8D9

2区背景颜色修改：
未登陆   #A9DAFF
登陆初级 #DBF5FF
登陆高级 #EAEAEB
*/
var allBackColor=FetchCookie("dzh_bg_color");
if(allBackColor==null)
	allBackColor = "#A9DAFF";
document.body.style.backgroundColor=allBackColor;
if(allBackColor=="#A9DAFF"){
	document.write("<link href='http://txt.mop.com/images/newdzh/1.css' rel='stylesheet' type='text/css'>");
}else if(allBackColor=="#DBF5FF"){
	document.write("<link href='http://txt.mop.com/images/newdzh/2.css' rel='stylesheet' type='text/css'>");
}else if(allBackColor=="#EAEAEB"){
	document.write("<link href='http://txt.mop.com/images/newdzh/3.css' rel='stylesheet' type='text/css'>");
}else if(allBackColor=="#CCE7FF"){
	document.write("<link href='http://txt.mop.com/images/newdzh/1.css' rel='stylesheet' type='text/css'>");
}else if(allBackColor=="#DBEAFF"){
	document.write("<link href='http://txt.mop.com/images/newdzh/2.css' rel='stylesheet' type='text/css'>");
}else if(allBackColor=="#D7D8D9"){
	document.write("<link href='http://txt.mop.com/images/newdzh/3.css' rel='stylesheet' type='text/css'>");
}else{	
	//document.body.style.backgroundColor="#A9DAFF";
	document.write("<link href='http://txt.mop.com/images/newdzh/1.css' rel='stylesheet' type='text/css'>");
}