<!--
      function ShowEmail(prefix, size) {
      j=prefix.indexOf(" "); if (j==-1) {j=prefix.length;}
      addr=prefix.substring(0,j).toLowerCase(); eaddr=addr + suffix; tsize=parseInt(size)+2; tsize1=parseInt(tsize)+2;
      handle=window.open("","","resizable=no,status=no,height=180,width=320");
      handle.document.write("<html><head><title>Contact Email</title></head>");
      handle.document.write("<body bgcolor=antiquewhite text=black onLoad='setTimeout(" + q + "self.close()" + q + ",5000);'>");
      handle.document.write("<img height=112 width=77 border=0 src='" + logo + "' align=left hspace=10>");
      handle.document.write("<p><font size=" + tsize1 + " color=red><b>"+ text + "</b></font></p>");
      handle.document.write("<p align=center><font size=" + tsize + ">To contact me, send an email to<br><a href=" + q + "mailto:" + eaddr + q +">" + eaddr + "</a><br>or click on the above link.<br> <br>This window will close in 5 seconds</font></p></body></html>");
      handle.document.close();

      return false;
   }

   function WriteAddr(prefix,domain,suff_id,show_addr) {
      switch (suff_id) {
         case 1: suffix=".org.uk"; break;
         case 2: suffix=".co.uk"; break;
         case 3: suffix=".net"; break;
         default: suffix="";
      }

      document.write("<a href='mailto:"+prefix+"@"+domain+suffix+"'>");
      if(show_addr==1)
         { document.write(prefix+"@"+domain+suffix); }
      else 
         { document.write("here"); }
      document.write("</a>");

      return true;
   }

   q=unescape("%22");

   logo="stevepic.jpg"; suffix="@steveholmes.net"; text=" &nbsp;STEVE HOLMES";
   mydomain="steveholmes";
//-->
