var q1 = '离开';
var q2 = '离开';
if (online[0]==1){
	q1 = '在线';
}
if (online[1]==1){
	q2 = '在线';
}
document.writeln("<style type=\"text/css\">");
document.writeln("<!--");
document.writeln(".flydiv {");
document.writeln("	position: absolute;");
document.writeln("	z-index: 99;");
document.writeln("	width: 160px;");
document.writeln("	right:1px;");
document.writeln("	font-size: 12px;");
document.writeln("	background-color: #FFF;");
document.writeln("	color: #C4CFFF;");
document.writeln("	border: thin solid #09F;");
document.writeln("	padding-bottom: 12px;");
document.writeln("}");
document.writeln(".flydiv .title{");
document.writeln("	line-height: 26px;");
document.writeln("	background-color: #09F;");
document.writeln("	height: 26px;");
document.writeln("	border: thin solid #FFF;");
document.writeln("	text-indent: 6px;");
document.writeln("}");
document.writeln(".flydiv .title A{");
document.writeln("	width:16px;");
document.writeln("	color: #FFF;");
document.writeln("	float:right;");
document.writeln("	margin:0px;");
document.writeln("}");
document.writeln(".flydiv .title span{");
document.writeln("	color: #FFF;");
document.writeln("	width:100px;");
document.writeln("	float:left;");
document.writeln("	margin:0px;");
document.writeln("}");
document.writeln(".flydiv span{");
document.writeln("	color:#FFB233;clear: both;");
document.writeln("	display: block;");
document.writeln("	margin-top: 12px;");
document.writeln("	padding-left: 6px;");
document.writeln("}");
document.writeln(".flydiv a{");
document.writeln("	color: #FFB233;text-decoration: none;");
document.writeln("}");
document.writeln("-->");
document.writeln("</style>");
document.writeln("<div class=\"flydiv\" id=\"flydiv\">");
document.writeln("<div class=\"title\"><span>客服资讯</span> <a href='javascript:void(0);' onclick='fly_hidden();'>X </a></div>");
document.writeln("<div class=\"info\">");
document.writeln("<span>技术QQ：<a href=\"http://sighttp.qq.com/cgi-bin/check?sigkey=3194c2838dfd6e685ff30ca53ab17b82eafc590bfff945987a45d70abfc28365\"; target=_blank; onclick=\"var tempSrc=\'http://sighttp.qq.com/wpa.js?rantime=\'+Math.random()+\'&sigkey=3194c2838dfd6e685ff30ca53ab17b82eafc590bfff945987a45d70abfc28365\';var oldscript=document.getElementById(\'testJs\');var newscript=document.createElement(\'script\');newscript.setAttribute(\'type\',\'text/javascript\'); newscript.setAttribute(\'id\', \'testJs\');newscript.setAttribute(\'src\',tempSrc);if(oldscript == null){document.body.appendChild(newscript);}else{oldscript.parentNode.replaceChild(newscript, oldscript);}return false;\">77386555 ["+q2+"]</a> </span>");
document.writeln("<span>销售QQ：<a href=\"http://sighttp.qq.com/cgi-bin/check?sigkey=588a7bb1e210307ca0feffb67acfe0f9364d1a3c4b971c831ea66f11f7085183\"; target=_blank; onclick=\"var tempSrc=\'http://sighttp.qq.com/wpa.js?rantime=\'+Math.random()+\'&sigkey=588a7bb1e210307ca0feffb67acfe0f9364d1a3c4b971c831ea66f11f7085183\';var oldscript=document.getElementById(\'testJs\');var newscript=document.createElement(\'script\');newscript.setAttribute(\'type\',\'text/javascript\'); newscript.setAttribute(\'id\', \'testJs\');newscript.setAttribute(\'src\',tempSrc);if(oldscript == null){document.body.appendChild(newscript);}else{oldscript.parentNode.replaceChild(newscript, oldscript);}return false;\">5101799 ["+q1+"]</a></span>");
document.writeln("<span>Email：su@gogocms.com</span>");
document.writeln("<span>24小时热线：15511656012</span>");
document.writeln("<span>我们的目标：简洁、高效</span>");
document.writeln("</div>");
document.writeln("</div>");
function DivFloat(id){
	this.interval = 0;
	this.div = document.getElementById(id);
	this.dom = (document.compatMode == 'CSS1Compat' ? document.documentElement : document.body);
	this.render = function() {
		//this.div.style.left = this.dom.clientWidth-this.div.offsetWidth - 2 + 'px';
		this.div.style.top = this.dom.scrollTop + 120 + 'px';
		
	}
	this.startFloat = function(objName){
		 this.interval = setInterval(function(o){return function(){o.render();}}(this), 10);
	}
	this.stopFloat = function(){
	  window.clearInterval(this.interval);
	}
}
function fly_hidden(){
	var div = document.getElementById('flydiv');
	div.style.display = 'none';
}
var float_obj = new DivFloat('flydiv');
float_obj.startFloat();
