<!-- hide this script from non-javascript-enabled browsers
function doPopupWindow(page, w, h, scroll) {
	window.name = "mother";											// name of parent window
	if (is.major > 3) delta_h = screen.availWidth - h;		// if newer browser, place window on right side of screen
	else delta_h = 0;													// else leave it left justified
	delta_h = 0;	
	OpenWin = window.open(page,"PopUp","personalbar=no,statusbar=no,toolbar=no,menubar=no,location=no,directories=no,scrollbars=" + scroll + ",resizable=no,height=" + h + ",width=" + w + ",top=0,left=" + delta_h + ",self.name='mother'");
	if (is.nav) OpenWin.focus();
	page="";
}
// stop hiding -->
