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