<SCRIPT language=
"JavaScript"
>
function
display_image(form) {
selectionname = form.imagename.options[form.imagename.selectedIndex].text;
selection = form.imagename.options[form.imagename.selectedIndex].value;
PreView = window.open(
""
,
"Resim"
,
"toolbar=0,location=0,directories=0,status=0,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=0,width=400,height=420"
);
PreView.document.open();
PreView.document.write(
"<HTML><HEAD>"
);
PreView.document.write(
"<TITLE>Preview</TITLE>"
);
PreView.document.write(
"</HEAD><BODY BGCOLOR=000000 TEXT=99ccff>"
);
PreView.document.write(
"<FORM><CENTER><B><FONT SIZE=+1>"
+
selectionname +
"</FONT></B><HR>"
);
PreView.document.write(
"<IMG HSPACE=0 VSPACE=0 "
+
"SRC='"
+ selection +
"'>"
);
PreView.document.write(
"<HR><FORM><INPUT TYPE='button' VALUE='Kapat' "
+
"onClick='window.close()'></FORM>"
);
PreView.document.write(
"</CENTER>"
);
PreView.document.write(
"</BODY></HTML>"
);
PreView.document.close();
}
</SCRIPT>
<FORM>
<p align=
"center"
>
<select NAME=
"imagename"
onChange=
"display_image(this.form)"
>
<!-- verander hieronder de url van de plaatjes die je wilt tonen --><center>
</select>
</FORM>