<!--/* This function produces an email address that can be   inserted into an HTML page without being hardcoded.   Goal: Prevent web crawlers from obtaining email addresses. */   /* Include this line at the top of any HTML file it's needed in   <SCRIPT LANGUAGE="JavaScript" SRC="http://www.cjpe.org/scramble.js"></SCRIPT> */function email( pre, dom, ext, text ){    p1 = '<a href=\"mai';    p2 = pre + "@" + dom + "." + ext;    p3 = '\">';	p4 = p2;	if( text )	{		p4 = text;	}    p1 += 'lto:';    p5 = '</a>';    document.write(p1+p2+p3+p4+p5);}//-->