<!--
function subWinOpen(xFileName){
	var profileWin;
	profileWin=window.open("",'PICTURE','width=400,height=300,resizable=Yes,scrollbars=Yes');
	profileWin.document.open();
	profileWin.document.write('<HTML>');
	profileWin.document.write('<HEAD>\n<TITLE>小さな旅の小さなギャラリー </TITLE>\n</HEAD>\n');
	profileWin.document.write('<BODY BGCOLOR="#FFFFFF" TEXT="#000000">\n');
	profileWin.document.write('<DIV ALIGN="Center">\n<IMG SRC=',xFileName,' ALT="image">\n<P>\n');
	profileWin.document.write('<A HREF="javaScript:window.close()"><IMG SRC="images/close.gif" WIDTH=55 HEIGHT=14 BORDER=0 ALT="閉じる"></A>\n');
	profileWin.document.write('</DIV>\n</BODY></HTML>');
	profileWin.document.close();

	 if(xFileName!=null&&profileWin.focus){
		 profileWin.focus();
	}
}
//-->

