function email(name, title, subjectTitle)
{
	var name = name;
	var title = title;
	var subjectTitle = subjectTitle;
	// the special characters "&#64;" (delete the spaces between these characters, it just doesn't display on this forum thats why I did it. corresponds to the "at" sign which addresses emails to a domain. this ensured the "at" sign is never used so spambots never realise this is an email link.
	var domain = "&#64;livingroomyogadotnet";
	domain = domain.replace(/dot/g, ".");
	document.write('<a href="mailto:'+name+''+domain+'?subject='+subjectTitle+'">'+title+'</a>');
}