function image_view(image_file) {

	image_window = window.open("about:blank","tmp_window");
	image_window.document.write('<html><body><title>画面イメージ</title>');
	image_window.document.write('<img border="0" src="'+image_file+'"/>');
	image_window.document.write('</body></html>');

}
