<!-- Begin
function display_image(form){
selectionname = form.imagename.options[form.imagename.selectedIndex].text;
selection = form.imagename.options[form.imagename.selectedIndex].value;
PreView = window.open("", "Preview", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=no,copyhistory=0,width=800,height=600,align=center,left=0,top=0");
PreView.document.open();
PreView.document.write("<HTML><HEAD>");
PreView.document.write("<TITLE>Preview</TITLE>");
PreView.document.write("</HEAD><BODY BGCOLOR=FFFFFF TEXT=000000>");
PreView.document.write("<DIV ALIGN=CENTER style='font:12px,Arial'><B>" + 
selectionname + "</B><HR>");
PreView.document.write("<IMG HSPACE=0 VSPACE=0 " +
"SRC='" + selection + "'>");
PreView.document.write("<HR><FORM><INPUT TYPE='button' VALUE='Close Window' " +
"onClick='window.close()'></FORM>");
PreView.document.write("</DIV>");
PreView.document.write("</BODY></HTML>");
PreView.document.close();
}
// End -->