function QQ(){
var Div=document.createElement('div');
Div.id='qq_online';
Div.style.position='absolute';
Div.style.top='200px';
var Html='';
Div.style.left='80px';
Html+='
Online Service
';
Html+='';
Html+='
';
Html+='';
Div.innerHTML=Html;
document.body.appendChild(Div);
FloatDiv('qq_online',200);
}
if (document.all){
window.attachEvent('onload',QQ)
}else{
window.addEventListener('load',QQ,false);
}function QQ_Close(){
if($('#qq_online').css('left')=='-130px'){
$('#qq_online').animate({left:'0px'},300);
}
else {
$('#qq_online').animate({left:'-130px'},300);
}
}