var HIME = new Array();
i = 0;
//==================================
// データセッチング
//　画像、アップ日、アップ時刻、名前、年齢、身長＆３サイズ、コメント
//==================================




//==================================
// データ溜め込み
//==================================
function MakeTBL(h_pict,h_date,h_time,h_name,h_age,h_size,h_msg){
	this.H_PICT  = h_pict;
	this.H_DATE  = h_date;
	this.H_TIME  = h_time;
	this.H_NAME  = h_name;
	this.H_AGE   = h_age;
	this.H_SIZE  = h_size;
	this.H_MSG   = h_msg;
	return this;
}


//==================================
// データ吐き出し
//==================================
if (HIME.length > 0){

document.write("<TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0 WIDTH=615><TR><TD ALIGN=CENTER>");
document.write("<DIV><IMG SRC=/ohp/images/hm-title.jpg></DIV>");
for(cnt=0;cnt<HIME.length;cnt++){
document.write(
"<TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0 CLASS=h-table>"+
"<TR>"+
"  <TD CLASS=h-image>"+HIME[cnt].H_PICT+"</TD>"+
"  <TD WIDTH=512 VALIGN=TOP>"+
"    <TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0>"+
"    <TR>"+
"      <TD WIDTH=125><IMG SRC=/ohp/images/hm-t-left.gif></TD>"+
"      <TD WIDTH=376 BACKGROUND=/ohp/images/hm-t-center.gif><DIV CLASS=h-time>"+HIME[cnt].H_DATE+"&nbsp;"+HIME[cnt].H_TIME+"&nbsp;UP!!</DIV></TD>"+
"      <TD WIDTH=11><IMG SRC=/ohp/images/hm-t-right.gif></TD>"+
"    </TR>"+
"    </TABLE>"+
"    <TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0 WIDTH=100% HEIGHT=81>"+
"    <TR>"+
"      <TD CLASS=h-name>"+HIME[cnt].H_NAME+"</TD>"+
"      <TD CLASS=h-age>"+HIME[cnt].H_AGE+"</TD>"+
"      <TD CLASS=h-size>"+HIME[cnt].H_SIZE+"</TD>"+
"    </TR>"+
"    <TR><TD COLSPAN=3 CLASS=h-msg>"+HIME[cnt].H_MSG+"</TD></TR>"+
"    </TABLE>"+
"  </TD>"+
"</TR>"+
"<TR BGCOLOR=#EAE1DA><TD COLSPAN=2><IMG SRC=/ohp/images/dot.gif></TD></TR>"+
"</TABLE>");
}
document.write("</TD></TR></TABLE>");

}

