
<!-- Part 1: Past in head.

// Your images!
Img1=new Image();Img1.src="../../images/folder.gif";
Img2=new Image();Img2.src="../../images/folder_open.gif";

// Your Text style, 1-7 only!
fnt='Verdana';
clr='#000000';

// Button layout! use standard HTML.
// "<BR>" to stack.
// "<P>" to stack with space between.
// " " for inline.
separate="<P>";

// Nothing needs altering past here!
function N(name){document.images[name].src=Img1.src}
function Y(name){document.images[name].src=Img2.src}
function DrawEm(Url,Id,Txt){
document.write("&nbsp;"//Alignment in NS wont work without this!
+" <a href='"+Url+"' onMouseOver=\"Y('"+Id+"\')\" onMouseOut=\"N('"+Id+"')\">"
+" <img src="+Img1.src+" border='0' align='absmiddle' name='"+Id+"'></a> "
+"<font face="+fnt+" color="+clr+"> "+Txt+" &nbsp;</font>"+separate+" ");
}
// -->

