<!-- Beginning of JavaScript newWin Applet

// Copyright Robert J. Wellock 1999-2009, All Rights Reserved.
var newWin = null;
/* popupName, directories=y/n, height=0, location=y/n, menubar=y/n,
resizable=y/n, scrollbars=y/n, status=y/n, toolbar=y/n, width=0 */

function popUp(strURL, strType, strHeight, strWidth)
{
 if (newWin != null && ! newWin.closed){
  newWin.close();}
var strOptions="";
// Fixed Window: Titlebar
if (strType=="fixed")
 {strOptions="height="+
  strHeight+",width="+strWidth;}
// Resizable Window: Titlebar, Menubar, Scrollbars, Status, Resizable
if (strType=="sizable"){
 strOptions="menubar,scrollbars,status,"+
 "resizable,height="+
  strHeight+",width="+strWidth;}
// Normal Window: Titlebar, Menubar, Location, Toolbar, Scrollbars, Status, Resizable
if (strType=="normal"){
strOptions="toolbar,menubar,scrollbars,"+
 "resizable,location,height="+
  strHeight+",width="+strWidth;}
// Focus on Pop-Up Window
 newWin = window.open(strURL, 'newWin', strOptions);
 newWin.focus();
}

// End of JavaScript -->