function GetXOffset() 
{
  if(document.all) {
    screenWidth = document.body.clientWidth;
  } else {
    screenWidth = window.innerWidth;
  }
 
  return (screenWidth - 729) / 2;
}
