// JavaScript Document

function changeConcert()
{
	document.getElementById('concertTitle').innerHTML = concertTitle[document.concertList.optlist.value];
	document.getElementById('specialGuest').innerHTML = specialGuest[document.concertList.optlist.value];
	document.getElementById('performedAt').innerHTML = performedAt[document.concertList.optlist.value];
	document.getElementById('programLink').innerHTML = programLink[document.concertList.optlist.value];
	document.getElementById('concertPlayer').innerHTML = concertPlayer[document.concertList.optlist.value];
}
	
var concertTitle= new Array(8)
concertTitle[0]="<h1>Spring 2009 One Minute Wonders Concert</h1>";
concertTitle[1]="<h1>Fall 2008 Composers&rsquo; Guild Concert</h1>";
concertTitle[2]="<h1>Fall 2008 Composition Studio Concert</h1>";
concertTitle[3]="<h1>Spring 2008 Composers&rsquo; Guild Concert</h1>";
concertTitle[4]="<h1>Spring 2008 Composition Studio Concert</h1>";
concertTitle[5]="<h1>Fall 2007 MoLAA Concert</h1>";
concertTitle[6]="<h1>Fall 2007 Composers&rsquo; Guild Concert</h1>";
concertTitle[7]="<h1>Spring 2007 Composers&rsquo; Guild Concert</h1>";
	
var specialGuest= new Array(8)
specialGuest[0]="<p><span class='italic'>With special guest, <a href='http://www.eclipsequartet.com/' target='_blank'>Eclipse Quartet</a></span></p>";
specialGuest[1]="";
specialGuest[2]="";
specialGuest[3]="<p><span class='italic'>With special guest, <a href='http://www.robincoxensemble.com/' target='_blank'>The Robin Cox Ensemble</a></span></p>";
specialGuest[4]="";
specialGuest[5]="";
specialGuest[6]="";
specialGuest[7]="";

var performedAt= new Array(8)
performedAt[0]="<p><span class='italic'>All music performed at the Daniel Recital Hall, California State University, Long Beach<br />March 18, 2009</span></p>";
performedAt[1]="<p><span class='italic'>All music performed at the Daniel Recital Hall, California State University, Long Beach<br />November 16, 2008</span></p>";
performedAt[2]="<p><span class='italic'>All music performed at the Daniel Recital Hall, California State University, Long Beach<br />October 20, 2008</span></p>";
performedAt[3]="<p><span class='italic'>All music performed at the Daniel Recital Hall, California State University, Long Beach<br />May 5, 2008</span></p>";
performedAt[4]="<p><span class='italic'>All music performed at the Daniel Recital Hall, California State University, Long Beach<br />April 16, 2008</span></p>";
performedAt[5]="<p><span class='italic'>All music performed at the Museum of Latin American Art, Long Beach, California<br />November 30, 2007</span></p>";
performedAt[6]="<p><span class='italic'>All music performed at the Daniel Recital Hall, California State University, Long Beach<br />November 26, 2007</span></p>";
performedAt[7]="<p><span class='italic'>All music performed at the Daniel Recital Hall, California State University, Long Beach<br />May 7, 2007</span></p>";

var programLink= new Array(8)
programLink[0]="<p><span class='bold'><a href='javascript:void(0);' onClick='program_popup(\"recordings/programs/program_eclipse_sp09.html\")'>View Concert Program</a>:</span> includes program notes and list of performers.</p>";
programLink[1]="<p><span class='bold'><a href='javascript:void(0);' onClick='program_popup(\"recordings/programs/program_compguild_f08.html\")'>View Concert Program</a>:</span> includes program notes and list of performers.</p>";
programLink[2]="<p><span class='bold'><a href='javascript:void(0);' onClick='program_popup(\"recordings/programs/program_compstudio_f08.html\")'>View Concert Program</a>:</span> includes program notes and list of performers.</p>";
programLink[3]="<p><span class='bold'><a href='javascript:void(0);' onClick='program_popup(\"recordings/programs/program_compguild_sp08.html\")'>View Concert Program</a>:</span> includes program notes and list of performers.</p>";
programLink[4]="<p><span class='bold'><a href='javascript:void(0);' onClick='program_popup(\"recordings/programs/program_compstudio_sp08.html\")'>View Concert Program</a>:</span> includes program notes and list of performers.</p>";
programLink[5]="<p><span class='bold'><a href='javascript:void(0);' onClick='program_popup(\"recordings/programs/program_molaa.html\")'>View Concert Program</a>:</span> includes program notes and list of performers.</p>";
programLink[6]="<p><span class='bold'><a href='javascript:void(0);' onClick='program_popup(\"recordings/programs/program_compguild_f07.html\")'>View Concert Program</a>:</span> includes program notes and list of performers.</p>";
programLink[7]="<p><span class='bold'><a href='javascript:void(0);' onClick='program_popup(\"recordings/programs/program_compguild_sp07.html\")'>View Concert Program</a>:</span> includes program notes and list of performers.</p>";

var concertPlayer= new Array(8)
concertPlayer[0]="<iframe name='concertPlayer' frameborder='0' height='227px' width='270px' scrolling='no' src='recordings/s09_eclipse.html'></iframe>";
concertPlayer[1]="<iframe name='concertPlayer' frameborder='0' height='227px' width='270px' scrolling='no' src='recordings/f08_guild.html'></iframe>";
concertPlayer[2]="<iframe name='concertPlayer' frameborder='0' height='227px' width='270px' scrolling='no' src='recordings/f08_studio.html'></iframe>";
concertPlayer[3]="<iframe name='concertPlayer' frameborder='0' height='227px' width='270px' scrolling='no' src='recordings/s08_guild.html'></iframe>";
concertPlayer[4]="<iframe name='concertPlayer' frameborder='0' height='227px' width='270px' scrolling='no' src='recordings/s08_studio.html'></iframe>";
concertPlayer[5]="<iframe name='concertPlayer' frameborder='0' height='227px' width='270px' scrolling='no' src='recordings/f07_molaa.html'></iframe>";
concertPlayer[6]="<iframe name='concertPlayer' frameborder='0' height='227px' width='270px' scrolling='no' src='recordings/f07_guild.html'></iframe>";
concertPlayer[7]="<iframe name='concertPlayer' frameborder='0' height='227px' width='270px' scrolling='no' src='recordings/s07_guild.html'></iframe>";
