function highlight(l_button, hoverFlag)
{
   if (hoverFlag)
      l_button.style.backgroundColor = "#F26A6A";
   else
      l_button.style.backgroundColor = "#dee2e2";
}

function ShowPop(l_url,l_width,l_height)
{
   l_xpos = window.screenX + window.outerWidth/2 - l_width/2;
   l_ypos = window.screenY + window.outerHeight/2 - l_height/2;

   l_new_win = window.open(l_url,"pop_page",
                                 "menubar=no, \
                                  Width=" + l_width + ", \
                                  Height=" + l_height + ", \
                                  resizable=yes, \
                                  ScrollBars=yes, \
                                  alwaysRaised=yes, \
                                  ScreenX=" + l_xpos + ", \
                                  ScreenY=" + l_ypos);
}
