
var PHOTOMAX = 9;
var photos = new Array(PHOTOMAX);
photos = ["l_img/04050601.jpg","l_img/04050602.jpg","l_img/04050603.jpg",];
function showPhoto(num){
var photo_window = window.open("","display","width=470,height=463");
photo_window.document.open();
photo_window.document.write("<HTML><HEAD><TITLE>ハピネスファミリー ***フォトレポート***</TITLE>");
photo_window.document.write("</HEAD>");
photo_window.document.write("<BODY leftMargin=0 topMargin=0 MARGINheight=0 MARGINwidth=0><center><IMG src=img/470.gif width=470 height=83 border=0><br>");
photo_window.document.write("<IMG src ='"+ photos[num]+"' alt="+ photos[num]+">");
photo_window.document.write("<BR><IMG src=../img/spacer.gif width=10 height=20 border=0><br><A href=javascript:close()><IMG src=img/close.gif width=470 height=30 border=0 alt=Close></A></center>");
photo_window.document.write("</BODY></HTML>");
photo_window.document.close();
photo_window.focus();
}
