<!--

function showpic(nam,w,h,alt)
{
myWin= open("","","width="+w+",height="+h+",status=no,toolbar=no,menubar=no");
myWin.document.open();
myWin.document.write("<html><head><title>"+alt+"</title></head>");
myWin.document.write("<body onBlur=\"window.close()\" bgcolor=#FFFFFF text=#000000 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>");
myWin.document.write("<img src='"+nam+"' width='"+w+"' height='"+h+"' alt='"+alt+"'>");
myWin.document.write("</body></html>");
myWin.document.close();
}
//-->
