//god I hate writing "document.write" and stufffunction link(description, url) {	document.writeln('<A HREF="' + url + '">' +						description + '</A><BR>');}function writeBanner() {	document.write('<a href="/index.html"><img src="wccmtalogo.gif" border=0 align=left></a>');	document.write('<span id="contacts" align=right><U>Contacts:</U><BR>');	document.write('<A HREF="mailto:jfboss@oregon.uoregon.edu">Jack Boss, President</a><BR>');	document.write('<A HREF="mailto:bruce.quaglia@utah.edu">Bruce Quaglia, Secretary/Treasurer</a><BR>');	//document.write('2005 Conference:<BR>');	//	document.write('<A HREF="mailto:zhall@music.ucsb.edu">Patricia Hall, Organizer</a><BR>');	//document.write('<A HREF="mailto:vandento@music.ucsb.edu">Pieter C. van den Toorn, Organizer</a><BR>');	document.write('</span>');}//function to write links for the current conferencefunction writeCurrent() {	link('2011 Homepage', 'index.html');	link('Program Schedule', 'under construction_schedule.html');	link('Abstracts', 'under construction_abstracts.html');	link('Directions and <br>&nbsp;&nbsp; Hotel Information', 'under construction_directions.html');}//function to write links for past conferencesfunction writePast() {	link('2010 @ Eugene', '/My Revisions 2010/index.html');	link('2009 @ Claremont', '/My Revisions 2009/index.html');	link('2008 @ Seattle', '/2008/index.html');	link('2007 @ Salt Lake City', '/2007/index.html');	link('2006 @ Vancouver', '/2006/index.html');	link('2005 @ San Francisco', '/2005/index.html');	link('2004 @ Santa Barbara', '/2004/index.html');	link('2003 @ New Mexico', '/2003/index.html');}//function to write General Infofunction writeInfo() {	link('About the Society', 'about.html');	link('Member Schools', 'members.html');	link('Contact', 'contact.html');	link('Related Links', 'links.html');}function writeSiteInfo() {	document.write('Site Design by <A HREF="http://lukema.net/">Luke Ma</A><BR>' +				   'Site Maintenance by <A HREF="mailto:salexcook@yahoo.ca">Scott Cook</a><BR>' +					'Please e-mail questions, comments, and concerns to the webmaster at ' +					'<A HREF="mailto:webmaster@wccmta.org">webmaster@wccmta.org</A>');}
