<!-- hide this script from non-javascript-enabled browsers

function doPopupWindow(page, w, h, scroll) {
	factor = 1.2;
	if (w < 200) factor = 1.4;
	w *= factor;
	h *= factor;
	if (w > 750) w = 750;
	if (h > 650) h = 650;
	OpenWin = this.open(page,"PopUpWindow","personalbar=no,statusbar=no,toolbar=no,menubar=no,location=no,directories=no,scrollbars=" + scroll + ",resizable=yes,height=" + (h * factor) + ",width=" + (w * factor));
	if (is.nav) OpenWin.focus();
}

// stop hiding -->


