<script language="JavaScript">
<!--
  function createInput(){
   var html = "<table border=1 bordercolor='blue'>";
   // 3 rows 3 cols;
   for(var row=0; row<3; row++){
     html += "<tr>";
     for(var col=0; col<3; col++){
   html += "<td>";
   html += "<input type='text' name='t" + row + col + "' size=10 class=txt>";
   html += "</td>"
 }
 html += "</tr>"
   }
   html += "</table>";
   document.all.upid.innerHTML = html;
  }
//-->
</script>