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-1000)/2+1000+1)+'px'; } else{ Div.style.right='1px'; } Div.style.top='200px'; var Html=""; Html+="

Online Service

"; Html+="
"; Html+="

Live Help

"; Html+='
'; Html+='

'; Div.innerHTML=Html; //$2('main').appendChild(Div); document.body.appendChild(Div); FloatDiv('qq_online',200); } window.onload=function(){QQ()}