// JavaScript Document
function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.open(URL);
}
function infoHandler(form){
var URL = document.info.info.options[document.info.info.selectedIndex].value;
window.location.href = URL;
}

function newWindow(URL, win_target, config){
	spawnWindow=window.open(URL, win_target, config)
	spawnWindow.focus()
	}
function popupPage(s) {
var person = s;
var page = "pacersbios.htm#" + person;
windowprops = "height=60,width=500,location=no,"
+ "scrollbars=yes,menubars=no,toolbars=no,resizable=yes";
var newwindow;
newwindow=window.open(page, "pacer", windowprops);
if(window.focus){ newwindow.focus()}
}