window.onload = addContact;

function addContact(){
	if(document.getElementById && document.createElement){
			var node = document.getElementById('contact');
			
			var mailLnk = '\u006D\u0061\u0069\u006C';
			mailLnk += String.fromCharCode(116,111,58);
			mailLnk += 'dovw';
			mailLnk += '\u0040';
			mailLnk += 'post.tau.ac.il';
			var span = document.createElement("span");
			span.style.fontFamily = 'Georgia';
			
			var link1 = document.createElement("a");
			link1.setAttribute("href", mailLnk);
			link1.appendChild(document.createTextNode("Contact Me"));
			span.appendChild(link1);
			node.appendChild(span);
	}
}
