function getEmailAddr(evt,id)
{
  var anchor = evt.srcElement;
  if(!anchor)
    anchor = evt.target;

  for(var idx = 0; idx < mails.length; idx++)
  {
    if(mails[idx].ident == id)
    {
      anchor.onmouseover = new Function("temp1", "window.status = '" + mails[idx].alttext + "'; return true;");
      anchor.onmouseout = new Function("temp2", "window.status = ''; return true;");
      anchor.href = "mailto:" + mails[idx].address;
      break;
    }
  }
  
  window.status = mails[idx].alttext;
  return true;
}
