//<!-- 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;	
	
	var winleft = screen.width - (w + 10);												
	delta_h = 0;			// else leave it left justified	
	
	oWin = 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=" + delta_h + ",left=" + winleft + ",self.name='mother'");
	oWin.focus();
	
	//return OpenWin;
}
// stop hiding -->
