

//<script language="javascript">
//created by sourabh on 11/4/2006 to incorporate the mouseover/mouseout effect on the black color
 var previousColor;
 
function StyleOnMouseOver()
{
	 
     window.event.srcElement.style.fontWeight = "bold";
}
function RestoreColor()
      {
            window.event.srcElement.style.fontWeight = "normal";
      }
function StyleOnMouseOverHeader()
{
	 previousColor = window.event.srcElement.style.color;
     window.event.srcElement.style.color = "red";
}
function RestoreColorHeader()
      {
            window.event.srcElement.style.color = previousColor;
      }
//For Check box in a Page

//</script>