
function imageWindows(url, path){
      var w = 100;
      var h = 100;
      var l = 0;//Math.floor((screen.width-w)/2);
      var t = 0;//Math.floor((screen.height-h)/2);

      var det = window.open("./page/imageWindows.php?url="+url+"&path="+path,"det","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
      det.focus();
}
