// JavaScript Document


function email(name, host, ext){
		emailAdd = name + '@' + host + '.' + ext;
		document.write('<a href="mailto:' + emailAdd +'">'+ emailAdd +'</a>');		
	}