﻿/*
Creates a new popup window with the given path and properties.
*/
function NewWindow(url, width, height, name)
{
  newwindow = window.open(url, name ,'toolbar=no,menubar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width='+ width +',height='+ height);
  newwindow.focus();
  return false;
}

function NewWindowWithScrollbar(url, width, height, name)
{
  newwindow = window.open(url, name ,'toolbar=no,menubar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,width='+ width +',height='+ height);
  newwindow.focus();
  return false;
}
