function jsRowOver(object,cursor)
{
  object.style.background = '#E8E8E8';
  if (cursor) {
    object.style.cursor = 'pointer';
    object.style.cursor = 'hand';
  }
}

function jsRowOut(object)
{
  object.style.background = '#FFFFFF';
  object.style.cursor = '';
  object.style.cursor = '';
}

function ShowHideDiv(Name)
{
    if (document.getElementById(Name).style.display=='') document.getElementById(Name).style.display='none';
    else document.getElementById(Name).style.display='';
}