// requires - imageutils.js

function textLinkEx(name, link, img1, img2, text)
{
  document.write("<A HREF=\"", link, "\"")
  if (img1 != null && img1.length > 1 && img2 != null && img2.length > 1)
  {
    document.write(" ONMOUSEOVER='changeImage(", name, ",\"", img2, "\")' ONMOUSEOUT='changeImage(", name, ",\"", img1, "\")'")
    preloadImage(img2)
  }
  document.write(">", text, "</A>")
}

