<!--
 var url_base = "http://www.naidonline.org",
     url1 = url_base + "/cgi-bin/naid-all/certverify/showcert?Member=1506",
     url2 = url_base + "/imgs/pages/certverify/verify_certification.gif",
     desc = "Click to Verify Certification";

 var ua = navigator.userAgent.toLowerCase(),
     oie = (ua.indexOf ("msie") != -1);
 if (oie) oie = (ua.indexOf ("msie 5") == -1 && ua.indexOf ("msie 6") == -1);

 function NAID_certificate()
 {
  sw = window.open (url1, 'NAID_Certificate', 'location=no,status=yes,resizable=yes,scrollbars=yes,width=620,height=450');
  sw.focus();
 }

 function NAID_maction (e)
 {
  if (document.addEventListener)
  {
   var cert = (e.target.name == "Certified");

   if (cert)
   {
    NAID_certificate();
    return false;
   }
  }
  else if (document.captureEvents)
  {
   var target = e.target.toString(), cert = (target.indexOf ("Certified") != -1);

   if (cert)
   {
    NAID_certificate();
    return false;
   }
  }

  return true;
 }

 function mouseDown(event)
 {
  if (event.button == 1)
  {
   if (oie)
    return true;
   else
   {
    NAID_certificate();
    return false;
   }
  }
  else if (event.button == 2)
  {
   NAID_certificate();
   return false;
  }
 }

 document.write("<a href=\"" + url1 + "\" tabindex=\"-1\" onmousedown=\"return mouseDown();\" target=\"NAID_Certificate\"><img name=\"Certified\" src=\"" + url2 + "\" alt=\""+desc+"\" width=\"76\" height=\"89\" border=\"0\" oncontextmenu=\"return false;\"></a>");

 if (document.addEventListener)
  document.addEventListener ('mouseup', NAID_maction, true);
 else if (document.layers)
 {
  document.captureEvents (Event.MOUSEDOWN);
  document.onmousedown = maction;
 }
// -->
