function showDiv(divid) {
   if (document.layers) document.layers[divid].visibility="visible";
   else document.getElementById(divid).style.visibility="visible";
}
function hideDiv(divid) {
   if (document.layers) document.layers[divid].visibility="hide";
   else document.getElementById(divid).style.visibility="hidden";
}
function ink(image,width,height) {
document.write("<div class=ink><img src=" + image + "a.jpg width=" + width + " height=" + height + " border=0><p style=\"font-size:8pt; margin-left: 20px\"><a href=" + image + ".jpg target=\"_new\">Click here to view full image</a></div>")
}
function link(url,top,left,width,height,z) {
document.write("<DIV ID=LINK" + z + " CLASS=transW STYLE=\"visibility: visible; position: absolute; top: " + top + "px; left: " + left + "px; width: " + width + "px; height: " + height + "px; z-index: " + z + ";\" onmouseover=\"showDiv('LINK" + z+1 + "');\"></div><A href=" + url + " target=_top><DIV ID=LINK" + z+1 + " CLASS=trans50 STYLE=\"visibility: hidden; position: absolute; top: " + top + "px; left: " + left + "px; width: " + width + "px; height: " + height + "px; z-index: " + z + ";\" onmouseout=\"hideDiv('LINK" + z+1 + "');\"></div></A>");
}