function bio(name)
{
	var bioFile = "bios/" + name + ".html";
	var bioWin = name + "Win";

	bioWindow = window.open(bioFile, bioWin, "scrollbars=yes width=400,height=350");
}

function printPage() 
{
	window.print();  
}

function applicationWindow()
{
	appWindow = window.open("application.html", "appWin", "width=670,height=630");
}

function jumpPage(newLoc)
{
	newPage = newLoc.options[newLoc.selectedIndex].value;

	if(newPage != "")
	{
		window.location = newPage;
	}
}

function closeWindow()
{
	window.close();
}
