
var newwindow;

function openNewWindow(url, width, height) {
  var paramString='height=' + height + ',width=' + width + ',resizable=yes,scrollbars=yes,status=yes';
  newwindow=window.open(url,'',paramString);
  if (window.focus) {
    newwindow.focus()
  }
}