// JavaScript Document
var opwincnt = 0;
function openwin(fileNM){
	if(opwincnt>0 && opwin.closed==false)	opwin.close();
	opwincnt++;
	opwin = window.open("", "Test", "width=900,height=690,scrollbars=yes");
	opwin.document.open();
	opwin.document.write('<html><head><title>プレビュー</title></head>');
	opwin.document.write('<body><center>');
	opwin.document.write('<img src="'+fileNM +'">');
	opwin.document.write('<p style="color:#666666;font-size:75%;">');
	opwin.document.write('|　<a href="javascript:window.close();">閉じる</a>　|');
	opwin.document.write('</p></center></body>');
	opwin.document.write('</bhtml>');
	opwin.document.close();
	return false;
}