function displayPhoto(gifname,width,height,descrn) {
	var w=width+40;
	var d=510;
	hw="width="+w+",height="+d+",menubar=no,scrollbars=yes,left=10px,top=0px,";
	var photoWin=window.open("","displayWindow",hw);
	photoWin.focus();
	photoWin.document.open("text/html");
	var w=w-40;
	var h=height;
	photoWin.document.write("<html><head><title>");
	photoWin.document.write("</title></head>");
	photoWin.document.write("<body bgcolor='#ffdab9'><div align='center'>");
	photoWin.document.write("<font color='#A52A2A'>");
	photoWin.document.write(descrn);
	photoWin.document.write("</font>");
	photoWin.document.write("<img src=");
	photoWin.document.write(gifname);
	photoWin.document.write(" width=");
	photoWin.document.write(w);
	photoWin.document.write(" height=");
	photoWin.document.write(h);
	photoWin.document.write(" Left = '0' border='2'>");
	photoWin.document.write("<FORM><INPUT TYPE='BUTTON' VALUE='Close Window'");
	photoWin.document.write(" onClick='parent.close();'></FORM>");
	photoWin.document.write("</div></body></html>");
	photoWin.document.close();  }
function nothing() {;}