// JavaScript Document
//<script = ==="JavaScript">
  
  var winHyt;

      function windowHyt(){
         //I used 120 as the height of the top table,eventhough its
         //original height is 100. because there is a little discrepancy.
         
         if (navigator.appName.toUpperCase().match(/MICROSOFT INTERNET EXPLORER/) != null){
             //You are using Internet Explorer.
             winHyt = document.body.clientHeight - 120;
         }else if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null){
             //You are using Netscape;
             winHyt = window.innerHeight - 120;
	     document.getElementById('stretchyTD').style.height = winHyt //window.innerHeight-100;
         }


      }


  //</script>