
//launch window ----------------------------------

function launchPhoto(Bukken,File1,File2,h){
	winH = h+174;
	features = 'toolbar=no,locationbar=no,resizable=yes,scrollbars=yes,statusbar=yes,menubar=no,width=497,height='+winH;
	newWin = window.open('','photo',features);
	newWin.focus();

	newWin.document.clear();
	newWin.document.write("<html><head><title>足立木工株式会社｜ADACHI WOODWORKS</title>");
	newWin.document.write("<meta http-equiv='content-type' content='text/html; charset=Shift_JIS'>");
	newWin.document.write("<link rel='stylesheet' href='/lib/css/common.css' type='text/css'>");
	newWin.document.write("<link rel='stylesheet' href='/lib/css/subwin.css' type='text/css'>");
	newWin.document.write("</head>");
	newWin.document.write("<body marginwidth=0 marginheight=0>");
	newWin.document.write("<table width='480' border='0' cellpadding='0' cellspacing='0' height='100%'><tr valign='top'><td>");
	newWin.document.write("<div id='subwrapper'>");
	newWin.document.write("<div id='subject'><div id='subjectinner'>"+Bukken+"</div></div>");
	newWin.document.write("<img src='img/"+File1+".jpg' alt='photo'><br>");
	if (arguments[2] == "") newWin.document.write("");
	else newWin.document.write("<img src='img/"+File2+".jpg' alt='photo'><br>");
	newWin.document.write("</div>");
	newWin.document.write("</td></tr><tr valign='bottom'><td id='subfooter'>");
	newWin.document.write("<a href='javascript:window.close();'><img src='/lib/img/subfooter_btn_close.gif' width='54' height='16' border='0' alt='閉じる'></a>");
	newWin.document.write("</td></tr></table>");
	newWin.document.write("</body></html>");
	newWin.document.close();
}
