function listare()
    {
        if (!window.print)
         {
            return;
         }
         window.print();
}


function redirectare(URL)
{
   window.location.href=URL;
}

function OpenNewWindow(url,lungime,latime,denumire,scrol){
    if (window.screen){
      var w = screen.width;
      var h = screen.height;
      var center_x = w / 2;
      var center_y = h / 2;
      var new_width;
      var new_height;
      var new_left;
      var new_top;

      new_width  = lungime;
      new_height = latime;
      new_left   = center_x - (new_width / 2);
      new_top    = center_y - (new_height / 2);

      var new_Window = window.open(url, denumire, "menubar=no, location=no, status=no, toolbar=no, scrollbars=" +scrol+", resizable=no , width=" + new_width + ", height=" + new_height + ", top=" + new_top + ", left=" + new_left + "");
      new_Window.focus();
    }
}
