function highlight(l_button, hoverFlag)
{
   if (hoverFlag)
      l_button.style.backgroundColor = "#F26A6A";
   else
      l_button.style.backgroundColor = "#dee2e2";
}

function ShowPop(l_url)
{
   l_new_win = window.open(l_url,"pop_page",
                                 "menubar=no, \
                                  Width=580, \
                                  Height=610, \
                                  resizable=yes, \
                                  ScrollBars=yes, \
                                  alwaysRaised=yes");
}



function go_link(l_row)
{
  //alert(l_row.childNodes.item(0).href);
  //alert(l_row.childNodes.item(0).target);

   if(l_row.childNodes.item(0).tagName != 'A')
     return;

   l_url = l_row.childNodes.item(0).href;
   l_target = l_row.childNodes.item(0).target;
 
   if (l_target == "")
      location.href=l_url;

   else
   {
      l_new_win = window.open(l_url,"new_page",
                                    "menubar=no, \
                                     Width=580, \
                                     Height=610, \
                                     resizable=yes, \
                                     ScrollBars=yes, \
                                     alwaysRaised=yes");
   }

}