// JavaScript Document
	function WriteEmail(userId, domain, topLevel)
	{
		document.write("<a href=\"mailto:");
		document.write(userId);
		document.write("@");
		document.write(domain);
		document.write(".");
		document.write(topLevel);
		document.write("\">");
		document.write(userId);
		document.write("@");
		document.write(domain);
		document.write(".");
		document.write(topLevel);
		document.write("</a>");
	} // WriteEmail

function WriteHeadBanner()
	{
		var numImages = 5;
		index = Math.floor(Math.random() * numImages);
		var imageString = "img/headerbar/hb" + index + ".png";
		var outStr = "<" + "img src=\"" + imageString + "\" width=\"950\" height=\"100\" alt=\"Florida Symphony Youth Orchestra\" align=\"right\">";
		document.writeln(outStr);
	}