// Hide e-mail address from spambots.
var at = unescape( "%40" );

function show_email( name, domain ) {
	// If a third parameter exists, it's the text to put the link around.
	// Otherwise, the text is just the e-mail address.
	if( arguments.length > 2 )
		text = arguments[2];
	else
		text = name + at + domain;
	
	// Write the link in the page.
	document.write( "<a href=\"mail" + "to" + ":" );
	document.write( name + at + domain + "\">" );
	document.write( text );
	document.write( "<\/a>" );
}
