var oldgridSelectedColor;

function setMouseOverColor(element)
{
    oldgridSelectedColor = element.style.backgroundColor;
    element.style.backgroundColor='#CCCCCC';
    element.style.color='#000000';
    element.style.fontWeight='bold';
    element.style.cursor='hand';
    element.style.textDecoration='none';
}

function setMouseOutColor(element)
{
    element.style.backgroundColor=oldgridSelectedColor;
    element.style.color='#000000';
    element.style.fontWeight='normal';
    element.style.textDecoration='none';
}

function HideModalPopup(ClientID) 
{ 
  var modal = $find(ClientID); 
  modal.hide(); 
}

