//***************************************************************************
//ARH, 09/02/04, BEGIN SCRIPT	 
//***************************************************************************

//***************************************************************************-->
//***************************************************************************-->
//-- 	Photo Gallery Selection Code	 -->
//***************************************************************************-->
function GetAlbum()
{
	var i;
	var a = document.photo;
	var Album = a.SelAlbum.options[a.SelAlbum.selectedIndex].text;
	
	switch(Album)
		{
			case "Rice University Youth Night":
					PhotoDisplay('http://www.fcyba.com/images/photogallery/Rice/index.htm','RiceYouthNight');
					break;
			case "Registration":
					PhotoDisplay('http://www.fcyba.com/images/photogallery/Registration/index.htm','Registration');
					break;
			case "League Tryouts":
					PhotoDisplay('http://www.fcyba.com/images/photogallery/Tryouts/index.htm','Tryouts');
					break;
			case "Opening Day":
					PhotoDisplay('http://www.fcyba.com/images/photogallery/OpeningDay/index.htm','OpeningDay');
					break;
			case "Team Pictures":
					PhotoDisplay('http://www.fcyba.com/images/photogallery/Teams04/index.htm','TeamPictures');
					break;
			case "Division 4":
					PhotoDisplay('http://www.fcyba.com/images/photogallery/Div4/index.htm','Div4');
					break;
			case "Rockets/Sugar Land Night":
					PhotoDisplay('http://www.fcyba.com/images/photogallery/Rockets/index.htm','Div4');
					break;	
			default:
					alert(Album + " is not an option....");
					break;				
		}
}

function PhotoDisplay(link,lname){
	window.open(link,lname,"top=150,left=100,height=400,toolbar,width=500,resizable,scrollbars");
	}
//***************************************************************************-->
//-- 		END SCRIPT	 -->
//***************************************************************************-->

