/**
	Some JavaScript functions compiled by Randy 
*/

function emailMasking(handle, garbage, domain, type) {
	//Modified from a script by Joe Maller http://www.joemaller.com
	//Helps make it difficult for a spam robot to find the email addresses on this site.
	myEmail=handle + '@' + domain;
	if (type == 'plain')
	{
		document.write(myEmail);
	}
	else if (type == 'link')
	{
		document.write('<a href="mailto:' + myEmail + '" class=\"link_1\">' + myEmail + '</a>');
	}
	else
	{
		return myEmail;
	}
}