function contact( address, dom ){
	// send an email without a clear text appearing in HTML
	// copyright 2004 Alexander von Thorn
	
	str =  "mailto:" + address + "@" + dom
	location.replace( str )
	history.go( str )

	} // contact ()
