// JavaScript Document
function write_email ( email, domain, text ) 
{
  var address = email + '@' + 'martinezlaw.net' ;
  if( !text || text == 'same' )
  {
	  	text = address;
  }
  document.write( '<a href="mailto:' + address + '">'+text+'</a>' );
}

