/* Take the parts of an email address and put them together.
   Usually used from html like:  <A href=" " onmouseover="contact(this,'taylortennis','verizon.net')">Scott Taylor</A> */
function contact(link, user, host, subject) 
{
 if (subject) { subject = "?Subject=" + subject; }  else { subject = ''; }
 link.href = "mailto:" + user + "@" + host + subject;
}


