
// Insert email address - hopefully avoid email scrapers ----------------------
function insertEmail()
{
	var username = "acalder";
	var hostname = "xtra.co.nz";
	var linktext = username + "@" + hostname;
	document.write("<a href=" + "mail" + "to:" + username + "@" + hostname 
		+ ">" + linktext + "</a>");
}

// Set menu option text to indicate selected page
function setOpt(mid)
{
	document.getElementById(mid).style.color = "#FDA65E";
}

