// This function is called from an image of an email address link
// Its purpose is to hide the mail address from Spam email address harvesters
// Address is written backwards on the page and then decoded here
// NB. This didn't seem to work for Netscape!

<!--
function addrdecode(InString)
{
var i, s, OutString;
	InString += ':otliam';
	OutString=new String();
	for(i=InString.length-1; i>= 0; i--)
	{
		s = InString.charAt(i);
		if ( s == '*' ) s= '@';
		OutString += s;
	}
	return OutString;
}
//-->
