window.onload = function(){
  if(String(navigator.appName).match("Microsoft Internet Explorer")){
      document.getElementById('content').style.height = document.body.offsetHeight - 130 + "px";
  }else{
      document.getElementById('content').style.height = window.innerHeight - 130 + "px";
  }

  ShowIt_init();

}