
/* Hides email address from bots parsing pure HTML markup */

function revealcontact() {
	
	var myemail = "be"; //break up for spammers parsing javascript
	myemail = myemail + "n@shir";
	myemail = myemail + "t-ediss.me";
	
	document.getElementById('c').innerHTML=myemail;
	document.getElementById('c').href = "mai" + "lto:" + myemail;
}


