function $2(ObjID){
return document.getElementById(ObjID);
}
function QQ(){
var ScreenWidth=screen.width;
var Div=document.createElement('div');
Div.id='qq_online';
Div.style.position='absolute';
if (ScreenWidth>=1024+130){
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+="
阪神客服
";
Html+="
阪神售后
";
Html+='
';
Html+='
';
Html+='';
Div.innerHTML=Html;
//$2('main').appendChild(Div);
document.body.appendChild(Div);
FloatDiv('qq_online',200);
}
function FloatDiv(Obj,Ch){
var Did=$2(Obj);
var DidTop=parseInt(Did.style.top);
var Diff=(document.documentElement.scrollTop+document.body.scrollTop+Ch-DidTop)*.80;
Did.style.top=Ch+document.documentElement.scrollTop+document.body.scrollTop-Diff+'px';
FloatID=setTimeout("FloatDiv('"+Obj+"',"+Ch+")",20);
}
window.onload=function(){QQ()}