// JavaScript Document
var ActiveInfo='About';

function ShowInfo(NewInfo) {	
	//Get the active box and switch off
	ActiveDiv=document.getElementById(ActiveInfo+'InfoBox');
	ActiveDiv.style.display='none';	
	
	//Get the new div and switch on
	NewDiv=document.getElementById(NewInfo+'InfoBox');
	NewDiv.style.display='block';	
	
	//Assign the new active info
	ActiveInfo=NewInfo;			
}

function MenuOver(SrcMenu) {
	SrcMenu.style.backgroundColor='#f0C980'
}
function MenuOut(SrcMenu) {
	SrcMenu.style.backgroundColor=''
}

function ShowMap() {
	WindowOptions='width=700,height=640,screenX=100,screenY=20,left=100,top=20,resizable,scrollbars=1,location=0,status=0';	
	window.open('Directions.html','_blank',WindowOptions)	
	
}

function ShowCD() {
	WindowOptions='width=850,height=540,screenX=100,screenY=20,left=100,top=20,resizable,scrollbars=1,location=0, status=0';	
	window.open('MexicanConcertMusic.html','_blank',WindowOptions)	
	
}


