var showLiveChat = true;
var Toppx =250;
var LiveChatDivW = 170;
var LiveChatDivH = 150;
var PageWidth = 740;
var MinScreenW = 624;
var ClosebuttonHtml = '<div align="right" style="position: absolute;top:0px;right:0px;margin:2px;padding:2px;z-index:2000;"><a href="javascript:;" onclick="hidead()" style="color:Black;text-decoration:none;font-size:12px;">X</a></div>';

var LiveChatHtml = "<div align=center><B><FONT COLOR=red>Online Live Chat</FONT></B></div><div align=center><A HREF='http://messenger.providesupport.com/messenger/jackeylian13.html' target='_blank'><IMG SRC='/images/cus_online.gif' WIDTH='134' HEIGHT='93' BORDER='0' ALT=''></A><br></div>";


document.write ('<div id="Javascript.LiveChatDiv" style="position: absolute;border: 1px solid #888888;background-color:#EEEEE2;z-index:1000;width:'+LiveChatDivW+'px;height:'+LiveChatDivH+'px;top:-1000px;word-break:break-all;display:none;">'+ClosebuttonHtml+'<div>'+LiveChatHtml+'</div></div>');

function scall(){
 if(!showLiveChat){return;}
 if (window.screen.width<MinScreenW){
  showLiveChat = false;
  document.getElementById("Javascript.LiveChatDiv").style.display="none";
  return;
 }
 var Borderpx = ((window.screen.width-PageWidth)/2-LiveChatDivW)/2;
 document.getElementById("Javascript.LiveChatDiv").style.display="";
 document.getElementById("Javascript.LiveChatDiv").style.top=document.body.scrollTop+Toppx;
 document.getElementById("Javascript.LiveChatDiv").style.left=document.body.scrollLeft+document.body.clientWidth-document.getElementById("Javascript.LiveChatDiv").offsetWidth-Borderpx;
}
function hidead()
{
 showLiveChat = false;
 document.getElementById("Javascript.LiveChatDiv").style.display="none";
}
window.onscroll=scall;
window.onresize=scall;
window.onload=scall;