function msq_delete(){
 if(confirm('Удалить?'))return true;
 return false;
}

function open_pic(img){
   myWin= open("", "displayWindow",
    "width=400,height=400,status=no,toolbar=no,menubar=no");
  myWin.document.open();

  myWin.document.write("<html><head><title>Фото");
  myWin.document.write("</title></head><body bottomMargin=\"0\" leftMargin=\"0\" topMargin=\"0\" rightMargin=\"0\" marginheight=\"0\" marginwidth=\"0\" bgcolor=\"#ffffff\">");
  myWin.document.write("<center><img src='/"+img+"' border=0></center>");
  myWin.document.write("</body></html>");
  myWin.focus();
}
