function popUp(URL)
{
eval("window.open('" + URL + "', 'window1', 'width=640, height=580, location=no, menubar=no, status=no, toolbar=no, scrollbars=yes, resizable=yes');");
}


function sizedPopUp(URL, width, height)
{
eval("window.open('" + URL + "', 'window2', 'width=" + width + ", height=" + height + ", location=no, menubar=yes, status=no, toolbar=yes, scrollbars=yes, resizable=yes');");
}

function printPage() {
  if (window.print)
    window.print()
  else
    alert("Sorry, your browser doesn't support this feature. Use the File menu on your browser to select Print.");
}

function closePage()
{
	self.close();
}
