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

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

	document.write(label + emailAddress);
}

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