﻿function imageWorks(theId, theState){
	myId = theId;
	myState = theState;
	document.images(myId).src = "images/" + myId + "_" + myState + ".png";
}

function goToPage(pg){
	myPage = pg;
	document.location.href = myPage + '.html';
}

function miniBio(url){

	myURL = url;
	window.open(myURL, 'miniBio', 'height=410, width=600, status=0, scrollbars=0, menubar=0, location=0, resizable=0');

}

function schedulesWindow(url,wname){

	myURL = url;
	myWname = wname;
	window.open(myURL, myWname, 'height=580, width=640, status=0, scrollbars=1, menubar=0, location=0, resizable=0');

}

function photoGallery(imgid){
	mySrc = 'images/galleryPics/' + imgid + '.jpg';
	document.getElementById('galleryPhoto').src = mySrc;
}
