<!--
// Email link code
// strName is the TEXT that appears on the page as the link
// strEmail is the first part of the email before the "@"
// Put these two argument values in your link
var strDomain = "pwfsd.org"
var strTag1 = "mail"
var strTag2 = "to:"

function create_email_link(strName, strEmail) {
	
	document.write("<a href='" + strTag1 + strTag2 + strEmail + "@" + strDomain + "'>" + strName + "</a>")
}
-->