     function Go(x)
     {
      if(x == "nothing")
      {
      	document.forms[0].reset();
      	document.forms[0].elements[0].blur();
      	return;
      }
      else if(x == "end") top.location.href = top.location.href;
      else
      {
      	top.location.href = x;
      	document.forms[0].reset();
      	document.forms[0].elements[0].blur();
      }
    }

    function setPointer(theRow)
    {
        if ( typeof(theRow.style) == 'undefined' ) {
            return false;
        }
        if ( typeof(document.getElementsByTagName) != 'undefined' ) {
            var theCells = theRow.getElementsByTagName('td');
        } else if ( typeof(theRow.cells) != 'undefined' ) {
            var theCells = theRow.cells;
        } else {
            return false;
        }

        var rowCellsCnt  = theCells.length;
        for (var c = 0; c < rowCellsCnt; c++) {
            theCells[c].style.backgroundColor = '#CCFFCC';
        }

        return true;
    }

    function unsetPointer(theRow)
    {
        if ( typeof(document.getElementsByTagName) != 'undefined' ) {
            var theCells = theRow.getElementsByTagName('td');
        } else if ( typeof(theRow.cells) != 'undefined' ) {
            var theCells = theRow.cells;
        } else {
            return false;
        }

        var rowCellsCnt  = theCells.length;
        for (var c = 0; c < rowCellsCnt; c++) {
            if ( theCells[c].className == "row3" ) {
              theCells[c].style.backgroundColor = '#D1D7DC';
            } else if ( theCells[c].className == "row2" ) {
                theCells[c].style.backgroundColor = '#DEE3E7';
              } else {
                  theCells[c].style.backgroundColor = '#EFEFEF';
              }
        }

        return true;
    }