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='260px'; var Html=""; Html+="
Online Service
"; Html+="
"; Html+="

在线客服一

"; Html+="

在线客服二

"; Html+="

在线客服三

"; Html+="

在线客服四

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

'; Div.innerHTML=Html; //$2('main').appendChild(Div); document.body.appendChild(Div); } if (document.all){window.attachEvent('onload',QQ)}else{window.addEventListener('load',QQ,false);}