function New_Window(l, t, w, h, URL)
{
  var windowprops = "width=" + w +
                    ",height=" + h +
                    ",left=" + l +
                    ",top=" + t +
                    ",scrollbars=yes" +
                    ",resizable=yes";


  Screenshot = window.open(URL,"Screenshot",windowprops);

}

