
function newWindow(url, width, height) {
  var windowNum = Math.ceil(Math.random() * 1000);
  var features = 'width=' + width + ',height=' + height + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes';
  window.open(url, windowNum, features);
}
