function show_photo(URL) 
 {
  x =  (Math.round((screen.width-550)/2));
  y =  (Math.round((screen.availHeight-412)/2));
  myWindow = window.open('show_img.php?file=' + URL, 'pic', 'toolbar=no, directories=no, location=no, status=no, menubar=no, resizable=no, scrollbars=no, left='+ x + ', top= '+ y +' , width='+ 550 +', height='+ 412);
  myWindow.focus();
 } 

