function showImage(path, width, height, alt)
{
	w = window.open('', '', 'width='+(width+20)+', height='+(height+20)+', left='+(screen.width/2 - width/2)+', top='+(screen.height/2 - height/2 - 100)+', toolbar=no, menubar=no, location=no, status=no, resizable=no, scrollbars=no');
	w.document.write('<html><title>'+alt+'</title><body Onclick="window.close();">');
	w.document.write('<div align="center"><img src="'+path+'" alt="'+alt+'"></div>');
	w.document.write('</body></html>');
}
function startList()
{
    if (document.all&&document.getElementById)
    {
        navRoot = document.getElementById("nav");
        for (i=0; i<navRoot.childNodes.length; i++)
        {
            node = navRoot.childNodes[i];
            if (node.nodeName=="LI")
            {
                node.onmouseover=function() {this.className+=" over";}
                node.onmouseout=function() {this.className=this.className.replace (" over", "");}
            }
        }
    }
}
window.onload=startList;