function NewWindow(file){	//新規ウィンドウを開く(jpg)

	newWin = window.open('','newWin','scrollbars=1,width=600');

	newWin.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"');
	newWin.document.write('"http://www.w3.org/TR/html4/loose.dtd">');
	newWin.document.write('<html><head>');
	newWin.document.write('<meta http-equiv="Content-Type" content="text/html; charset=utf-8">');
	newWin.document.write('<title>2011　春の図書カードポスター</title>');
	newWin.document.write('</head><body onLoad="focus();">');

	newWin.document.write('<div align="center"><img src="http://www.toshocard.com/images/');
	newWin.document.write(file);　//拡大画像
	newWin.document.write('.jpg" alt="">');
	newWin.document.write('<br><br>');
	newWin.document.write('<a href="javascript:window.close();">ウィンドウを閉じる</a></div>');

	newWin.document.write('</body></html>');

	newWin.document.close();

}

