function QQ(){
var ScreenWidth=screen.width;
var Div=document.createElement('div');
Div.id='qq_online';
Div.style.position='absolute';
if (ScreenWidth>1280){
Div.style.left=((ScreenWidth-980)/2+980+1)+'px';
}
else{
Div.style.right='1px';
}
Div.style.top='200px';
var Html="";
Html+="
Online Service
";
Html+="";
Html+="
客服
";
Html+="
客服
";
Html+="
客服
";
Html+="
客服
";
Html+="
客服
";
Html+='
';
Html+='';
Div.innerHTML=Html;
//$2('main').appendChild(Div);
document.body.appendChild(Div);
FloatDiv('qq_online',200);
}
if (document.all){window.attachEvent('onload',QQ)}else{window.addEventListener('load',QQ,false);}