
<!--
function ChangeRule(MyObject, MyRules){
    IE4 = (document.all) ? 1 : 0;
    { if (IE4)
       { document.styleSheets.MyStyles.addRule(MyObject,MyRules); }
    }
}

function Hint(HintText) {
   NS4 = (document.layers) ? 1 : 0;
   IE4 = (document.all) ? 1 : 0;
   ver4 = (NS4 || IE4) ? 1 : 0;   
   {if (ver4)
       { window.status=HintText } 
    }
}

<style>
 .Task {cursor:hand;   font-weight : normal;   color : Black; }
 .TaskHilite {cursor:hand;  font-weight : bold;  color : Blue }
</style>

//-->