<!--
 function showAdd(last,first,join,mailto,subject,link,style){

// Specify the domain mail is to be sent to

   var myDomain = "thomasa.co.uk";

// Build the address

   var name = first+join+last+"@"+myDomain;

// If "mailto" is "1" make the address an active link

   if (mailto == 1) {

// If link is "1" use name as link text otherwise use whatever is passed to the routine

     if (link == 1) {
       link = name;
     }

// Create message subject if specified

     if (subject) {
       subject = '?subject='+subject;
     }

// If a style is given, set "CLASS="

     if (style) {
       style = ' CLASS="'+style+'"';
     }

// Build the link

     document.write('<A HREF="mailto:'+name+subject+'"'+style+'>'+link+'</A>');
   }

// otherwise just show the address

   else {
     document.write(name);
   }
 }
//-->
