//******************************************************//
// This script will mask email address by breaking them //
// into segments that do not resemble a valid email     //
// address in html source code.                         //
//                                                      //
// This script requires mail.gif to be                  //
// in the /images directory.                            //
//                                                      //
// Copyright 2004, William J. Knight                    //
// All rights reserved.                                 //
//                                                      //
// contact William J. Knight at                         //
// conal@chirurgeonguild.org for permission             //
// to utilize this script                               //
//                                                      //
// Rev 2 removed at.gif to allow web based email users  //
// to cut and paste address.  This slightly decreases   //
// the security of this routine in favor of usability   //
//                                                      //
// *****************************************************//

function hidemail(name, address)

{ 
  document.write("<a href='mail"+"to:"+name+"@"+address+"'> \
  <img border='0' src='http://antir.chirurgeonguild.org/images/mail.gif' alt='[Email Address]' \
  width='15' height='12'>"  + " " + name + "@" + address + "</a>");
}

