// JavaScript Document

function swapLogo(theLogo){
	document.getElementById("theLogo").src = theLogo;
}
function swapBack(){
	document.getElementById("theLogo").src = "img/ri_logo.gif";
}

function openWindow(thePage){
	thisWindow = window.open(thePage, 'bio', "height=400,width=620,scrollbars");
	thisWindow.focus();
}