<!-- RealmSurfer Email Encryptor. (c) 2006 RealmSurfer, All Rights Reserved. www.realmsurfer.com.au

// creates an email link (spambot protection).  Leave linkTitle blank to display the email address
function email_encrypt(username,subject,linkTitle,domainext) 
{
	if(linkTitle=="") {
		linkTitle = username + "@" + domainext;
	}
	var emailAddress = "<a href='mailto:" + username + "@" + domainext + "?subject=" + subject + "'>"+ linkTitle +"</a>";

	document.write(emailAddress);
}

// writes an email address on the Page (spambot protection)
function display_email(username,domainext) 
{
	var emailAddress = username + "@" + domainext;
	document.write(emailAddress);
}
//-->
