Text in ALL CAPS are variables to be named by you

<html> <head> <title></title> </head> <script lanquage="javascript"> <!-- hide from old browsers // check if the browser is Navigator 3 or higher: agent=navigator.userAgent; browserVer=2; if(agent.substring(0,7)=="Mozilla"){ if(parseInt(agent.substring(8,9)) >= 3){ browserVer=1; } } // preload universal images: if(browserVer==1){ nHOM = new Image(152,36); nHOM.src = "HOME.GIF"; nHOM1 = new Image(162,20); nHOM1.src = "HOME2.GIF"; } // The following manages mouseOver animations // imgDocID - the name or number of the document image to be replaced // imgObjName - the name of the image object to be swapped in function hiLite(imgDocID,imgObjName){ if (browserVer == 1) { document.images[imgDocID].src = eval(imgObjName + ".src") } } // done hiding --> </script> <body> <table border=0 width=25% align=left> <tr><td valign="center" align="left"><a href="INDEX.HTM" onMouseOver="hiLite('doc_nHOM','nHOM1')" onMouseOut="hiLite('doc_nHOM','nHOM')"> <img name="doc_nHOM" src="HOME.GIF" border=0 alt="DESCRIBING TEXT HERE"></a></td></tr> </table> </body> </html>