function display_image(selection,selectionname) { 
PreView = window.open("", "Preview", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width=740,height=700"); 
PreView.document.open(); 
PreView.document.write("<HTML><HEAD>"); 
PreView.document.write("<TITLE>Large View</TITLE>"); 
PreView.document.write("</HEAD><BODY BGCOLOR=FFFFFF TEXT=000000>"); 
PreView.document.write("<FORM><CENTER><B><FONT FACE=VERDANA SIZE=2>" + 
selectionname + "</FONT></B><HR>"); 
PreView.document.write("<IMG HSPACE=0 VSPACE=0 " + 
"SRC='" + selection + "'>"); 
PreView.document.write("<HR><FORM><INPUT TYPE='button' VALUE='Close' " + 
"onClick='window.close()'></FORM>"); 
PreView.document.write("</CENTER>"); 
PreView.document.write("</BODY></HTML>"); 
PreView.document.close(); 
 } 