

	function sendEMTo(){
		var tg="<";          /*W3C validator needs that*/
		var name="english";   /*first part of your address*/
		var at="@";
			/*as all navigators do not accept Unicode (&#64; or hexa &#x040; ...)*/
			/*a few browsers (as Mozilla) and robots decode it on the fly*/
		var host1="falund";/*start of your provider's name*/
		var host2="afa.org";   /*end of your provider's name*/
		var text="Contact Us";  /*text you want to display - don't display the address*/
		var title="titl"+"e=";
		var span = document.getElementById("email_span");
		if (span){
			var html = tg+"a hr"+"ef=mai"+"lto:"+name;
			html = html + at+host1+host2+" " +title+name+at+host1+host2+">"+text+tg+"/a>";	
			span.innerHTML = html;
		}
	}
	
	function sendEMTo(name, company, domain) {
		locationstring = 'mai' + 'lto:' + name + '@' + company + '.' + domain;
		window.location.replace(locationstring);
	}
	
	function setEMTitle(name, company, domain, obj) {
		string = name + '@' + company + '.' + domain;
		obj.setAttribute('title', string);
		window.status = "Contact us by sending an email to: " + string;
	}
	


				

