function bodyOnLoad() {
  //debugger;
  screenSize();
}

function newWin(href) {
    return !window.open(href);
}

function screenSize() {
  var x = document.getElementById('size');
  script = document.createElement('script');
  script.id = 'scriptSize';
  script.src = '/size.php?s=' + screen.width + 'x' + screen.height;
  x.appendChild(script);
}

