function BrowserClientWidth(){
  if (jQuery.browser.msie){
    return document.documentElement.offsetWidth;
  }
  else {
    return window.innerWidth;
  }
}

function BrowserClientHeight(){
  if (jQuery.browser.msie){
    return document.documentElement.offsetHeight;
  }
  else {
    return window.innerHeight;
  }
}


