<!-- hide this script from non-javascript-enabled browsers
function doPopupWindow(page, w, h, scroll, name, leftright) {
	window.name = "mother";											// name of parent window
	if (leftright.indexOf("right") == 0) delta_h = screen.availWidth - h;		// if right, right justify
	else delta_h = 0;													// else leave it left justified
	OpenWin = window.open(page, name,"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();
}


// stop hiding -->

