function subtodo(todo2,id) {
   if (todo2 == "del") {
      if (confirm("! Attention vous allez supprimer un enregistrement !\nConfirmez-vous cette suppression ?")) {
         document.inputform.todo2.value = todo2;
         document.inputform.del.value = id;
         document.inputform.submit();
      }
   } else if (todo2 == "add") {
         document.inputform.todo2.value = todo2;
         document.inputform.submit();
   } 
}


function suball() {
   frames['frmfile'].document.inputform["nextaction"].value = "1";
   frames['frmfile'].document.inputform.submit();
}


function showDocList(name) {

   var left = (screen.availWidth/2) - 250;
   var ttop = (screen.availHeight/2) - 300;
   
   sList = window.open("tools/filemngr_frmst.html?prefix=&fieldname="+name, "filelist", "toolbar=0, statusbar=0, width=500, height=550, left="+left+",top="+ttop);
   sList.focus();

}

function showDocListVignettes(name) {

   var left = (screen.availWidth/2) - 250;
   var ttop = (screen.availHeight/2) - 300;
   
   sList = window.open("tools_vignettes/filemngr_frmst.html?prefix=&fieldname="+name, "filelist", "toolbar=0, statusbar=0, width=500, height=550, left="+left+",top="+ttop);
   sList.focus();

}
