//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="weblogo-silver-olive.jpg" border=0 align=left></a>');

}

//function to write links for the "About CISM"
function writeCurrent() {
	link('People', 'people.html');
	//link('Abstracts', 'abstracts.html');
	//link('Directions and <br>&nbsp;&nbsp; Hotel Information', 'directions.html');
}


//function to write links for "CISM Events"
function writePast() {
	link('Current Events', 'currentevents.html');
	link('Past Events', 'pastevents.html');
	link('Past Conferences', 'pastconference.html');
	link('Gallery', 'gallery.html');
}

//function to write "Contact CISM"

function writeInfo() {
	link('Contact Cism', 'contact.html');
	document.writeln('<br />');
	link('UCSB Music Department', 'http://www.music.ucsb.edu/')
	document.writeln('<br />');
	document.writeln('<br />');
	document.writeln('<br />');
	document.writeln('<br />');
	document.writeln('<br />');
	document.writeln('<br />');
	link('For Board Members', 'backdoor.html')
	//link('Submit a Proposal', 'proposal.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>' +
					'Please e-mail questions, comments, and concerns to the webmaster at ' +
					'<A HREF="mailto:luke@lukema.net">luke@lukema.net</A>');
}