	function hiddenaddress( id, server, domain, text ) {
		if( text==null ) 
		text = id + '@' + server + '.' + domain;
		document.write('<a href="' + 'mailto:' + id + '@' + server + '.' + domain + '">' + text + '</a>');
	}

       	function ShowDiv( DivName ) {
		if( !document.getElementById )  return
		which = document.getElementById( DivName );
		which.style.display="";
	}

	function HideDiv( DivName ) {
		if ( !document.getElementById )  return	
		which = document.getElementById( DivName );
		which.style.display="none";
	}

	var id;
	var server;
	var domain;
	var text;

	function hiddenaddress(id, server, domain, text) {

	  if ( text==null ) 
	    text = id + '@' + server + '.' + domain;

	  document.write('<a href="' + 'mailto:' + id + '@' + server + '.' + domain + '">' + text + '</a>');
	}

