var ns = (window.Event) ? true : false;   // test for Netscape 4 & 6
var nsie5 = (document.documentElement) ? true : false;
var ns6 = (ns && nsie5);
var ns4 = ((navigator.appName=="Netscape")&&(parseInt(navigator.appVersion)==4))
var ie = (document.all) ? true : false;
var mac = (navigator.userAgent.indexOf("Mac") > 1) ? true : false;


function Row(objRow,overOut) 
{
	 if (ie) 
  {
		   objRow.attributes["class"].nodeValue = overOut;
	 } 
  else if (ns6)
  {
		   objRow.setAttribute("class",overOut);
  }
}

