function ST_hideEmail() {  //v1.0 Steve Tesmer 6/13/08
	// Syntax: <a href="mailto:ARG1@ARG2[?subject=ARG4]">ARG3</a>
	document.write('<a href="mai' + 'lto:' + arguments[0] + '@' + arguments[1]);
	if (arguments[3]) { document.write('?subject=' + arguments[3]); }
	document.write('">' + arguments[2] + '</a>');
}

