
 function emailAddress()
 {
  document.write("<a href=\"javascript:location='mailto:\u0069\u006e\u0066\u006f\u0040\u0064\u0072\u0075\u0062\u0075\u0062\u0075\u002e\u0063\u006f\u006d'\" title=\"\u0069\u006e\u0066\u006f\u0040\u0064\u0072\u0075\u0062\u0075\u0062\u0075\u002e\u0063\u006f\u006d\" onmouseover=\"window.status=this.title; return true\" onmouseout=\"window.status=' ';\">");
  document.write("\u0069\u006e\u0066\u006f\u0040\u0064\u0072\u0075\u0062\u0075\u0062\u0075\u002e\u0063\u006f\u006d");
  document.write("</a>");
 }


 function externalLinks()
 {
  if (!document.getElementsByTagName) return;
  var anchors = document.getElementsByTagName("a");
  for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
  }
 }

 window.onload = externalLinks;

