function pre() {
img=document.formup.upfile.value;
img='<img src="file:///'+img+'" galleryimg="no">';
var win=window.open('','ImagePre','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,height=450,width=600');
win.document.write('<html><head>');
win.document.write('<link rel="stylesheet" href="http://homepage3.nifty.com/anf/css/ekeigi.css" type="text/css"></head>');
win.document.write('<body style="background-color:#fffff0">');
win.document.write('<span style="color:#ff0000">画像はこの画像です</span><br>');
win.document.write(img);
win.document.write('<form><input type="submit" style="background-color:#6a5acd; color:#ffffff" value="閉じる" onclick="window.close()">');
win.document.write('</form>');
win.document.write('</body></html>');
win.document.close()
}
