ie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ));
 
function msover(CellID){
 if (ie4) {
 eval('Row'+CellID).bgColor="#FFF4E8";
 eval('Text'+CellID).style.color="#000099";
}
}
 
function msout(CellID){
if (ie4) {
 if (CellID<=200) {
 eval('Row'+CellID).bgColor="#79ACEA";
 eval('Text'+CellID).style.color="rgb(0,0,153)";
 }
 else {
 eval('Row'+CellID).bgColor="#ABCBF1";
 eval('Text'+CellID).style.color="rgb(0,0,153)";
 }
 }
}
