// JS program to create the CS205 overlay example
function hldoit()
   {   //window.alert('reached hldoit');
    if (!stdbrowser)
      window.alert("You may need to upgrade your browser to display this page properly!");
    txtobj=new getobj('txt');
    hlobj=new getobj('hl');
    tblobj=new getobj('mytable');
          tblobj.style.zIndex=0;
          hlobj.style.zIndex=1;
          txtobj.style.zIndex=2;
      tabletop=30;     tableleft=115; tableright=400;      
      txttop=tabletop+260;txttop_adjustor=0;
      if(isie) txttop_adjustor=40; 
      else if(isff) txttop_adjustor=30; 
        else if (isns) txttop_adjustor=30;
      txtleft=110; txtright=200; if(isff)txtright=100;
      txtfnl=txttop + txttop_adjustor;
      hltop=txtfnl-5; hlleft=txtleft-5; hlright=200; 
     
     //top right bottom left  (-1 means no change to old value)
     setpos(tblobj,tabletop,tableright,-1,tableleft);
     setpos(txtobj,txtfnl,txtright,-1,txtleft); // for the "<atag>" line
     setpos(hlobj, hltop, hlright,-1,hlleft);    /// for the yellow blob
     tstpos(hlobj);
  }

