<!-- Original:  Paul Colton  -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function popUp(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=1,resizable=1,copyhistory=0,width=850,height=750");
PreView.document.open();
PreView.document.write("<HTML><HEAD>");
PreView.document.write("<TITLE>Condors Photo Preview</TITLE></HEAD>");
PreView.document.write('<BODY onBlur="self.close()" onClick="self.close()">');
PreView.document.write("<FORM><CENTER><B><FONT SIZE=+1>" + "www.manka.net" + "</FONT></B><HR>");
PreView.document.write("<FORM><INPUT TYPE='button' VALUE='Close' " + "onClick='window.close()'></FORM>");
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();
    }
// End -->