        function displayPhoto(gifname,width,height,descrn) {
                var w=width+40;
                var h=height+150;
                hw="width="+w+",height="+h+",menubar=no,scrollbars=yes,left=10px,top=10px";
                var photoWin=window.open("","displayWindow",hw);
                photoWin.focus();                               
                photoWin.document.open("text/html");
                var w=w-40;
                var h=h-150;
                photoWin.document.write("<html><head><title>");
                photoWin.document.write(descrn);
                photoWin.document.write("</title><head>");
                photoWin.document.write("<body bgcolor='#fff8dc'><div align='center'>");
                photoWin.document.write("<h3>");
                photoWin.document.write(descrn);
                photoWin.document.write("</h3>");
                photoWin.document.write("<img src=");
                photoWin.document.write(gifname);
                photoWin.document.write(" alt=");
                photoWin.document.write("loading.....");
                photoWin.document.write(" HEIGHT=");
                photoWin.document.write(h);
                photoWin.document.write(" WIDTH=");
                photoWin.document.write(w);
                photoWin.document.write(" Left = '0' border='3'>");
                photoWin.document.write("<FORM><INPUT TYPE='BUTTON' VALUE='Return to page'");
                photoWin.document.write(" onClick='parent.close();'></FORM>");
                photoWin.document.write("<br><br></div></body></html>");
                photoWin.document.close();  }

function myVoid() {;}
