var ready  = 0;
var timing = 1;
var loaded = 0;
IE5 = (navigator.userAgent.indexOf("MSIE 5") > 0) ? 1 : 0;

if (document.all && !IE5) {  //overload document.getElementById for IE4
  document.getElementById = function (name) {
    return document.all(name);
  }
}

function newWindow(url, name, width, height) {
  myWindow = window.open(url, name,"location=no,directories=no,menubar=no,statusbar=no,toolbar=no,scrollbars=no,height=" +height+ ",width=" +width+ ",resizable=yes"); 
  myWindow.resizeTo(width,height);
  myWindow.focus();
  return false;
}

function scrollWindow(url, name, width, height) {
  myWindow = window.open(url, name,"location=no,directories=no,menubar=no,statusbar=no,toolbar=no,scrollbars=yes,height=" +height+ ",width=" +width+ ",resizable=yes"); 
  myWindow.resizeTo(width,height);
  myWindow.focus();
  return false;
}