//****************************************//

function init() {	
	if (whichSection != "") {
		document.getElementById(whichSection).className = "navOn";
		document.getElementById(whichSection + "Sub").className = "subNavOn";
	}
	document.getElementById("nav").style.visibility = "visible";
	document.getElementById("mainContent").style.visibility = "visible";
}


//emailAddress: hide from spam bots
  function createMail(emailAddress, subject) {
 		var addy = emailAddress
 		var dom = '&aurorachorus*o_r_g'
 		var mail1 = 'mai'
		var mail2 = 'lto'
		var subj = subject
		dom = dom.replace('&','@')
		dom = dom.replace('*','.')
		dom = dom.replace('_','')
		dom = dom.replace('_','')
		var output = mail1 + mail2 + ':' + addy + dom + subj
		window.location = output

  }
