<! DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 transitional//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
<meta http-equiv= "Content-type" content= "text/html; charset=gb2312 "/>
<title> Fill Table Data </title>
<script type= "Text/javascript" >
<!--
function Filltabledata (cols,height)
{
var Trdata=document.getelementbyid ("Tab_data");
var Tabobj=document.getelementbyid ("DataTable");
if (trdata!=null)
{
Set the colspan of the header column of the table
Tabobj.rows[0].cells[0].colspan=cols;
Set column height
height=height| | 30;
Populating data
var tds=trdata.cells;
var newtr=null;
var times=0;
while (tds.length>0)
{
if (times%cols==0)
{
Newtr=tabobj.insertrow (Trdata.rowindex);
Newtr.style.backgroundcolor= "#ffffff";
Newtr.style.height=parseint (height) + "px";
}
Tds[0].style.width= (100/cols). toFixed (1) + "%";
Newtr.appendchild (Tds[0]);
times++;
}
Complete the last line of TD
for (Var i=newtr.cells.length;i<cols;i++)
{
var Newtd=newtr.insertcell (-1);
Newtd.innerhtml= "&NBSP";
newtd.style.width=100/cols+ "%";
}
}
TrData.parentNode.removeChild (TRDATA);
}
Window.onload=function ()
{
Filltabledata (4,30);
};
-->
</script>
<body>
<table id= "dataTable" style= "width:98%; border-width:0px; Background-color: #cccccc; "cellpadding=" 0 "cellspacing=" 1 ">
<tr>
<th style= "Text-align:center;background-color: #f1f5fe; height:30px" > Time </th>
</tr>
<tr id= "Tab_data" style= "Display:none" >
<TD title= "2000-01" ><a href= "#" >2000-01</a></td>
<TD title= "2000-02" ><a href= "#" >2000-02</a></td>
<TD title= "2000-03" ><a href= "#" >2000-03</a></td>
<TD title= "2000-04" ><a href= "#" >2000-04</a></td>
<TD title= "2000-05" ><a href= "#" >2000-05</a></td>
<TD title= "2000-06" ><a href= "#" >2000-06</a></td>
<TD title= "2000-07" ><a href= "#" >2000-07</a></td>
<TD title= "2000-08" ><a href= "#" >2000-08</a></td>
<TD title= "2000-09" ><a href= "#" >2000-09</a></td>
<TD title= "2000-10" ><a href= "#" >2000-10</a></td>
<TD title= "2000-11" ><a href= "#" >2000-11</a></td>
<TD title= "2000-12" ><a href= "#" >2000-12</a></td>
<TD title= "2001-01" ><a href= "#" >2001-01</a></td>
</tr>
</table>
</body>