function cerca()
{
   var i=0;
   var chk=document.getElementById('s_'+i);
   var valore=new Array();
   while (chk!=null)
   {
     valore[i]=chk.options[chk.selectedIndex].value;      
     i++;
     chk=document.getElementById('s_'+i);
   }
   xajax_cerca(valore);
}
function vedimag(csmdocid)
{
var wind='vedimag.php?id='+csmdocid;
  //alert(wind);
  window.open(wind,'dettagliomag','width=700,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=no');
  return true;
  
}
function cerca2()
{
   var valore=new Array();
   xajax_cerca(valore);
}
function vedimag(csmdocid)
{
  //alert(csmdocid);
var wind='vedimag.php?id='+csmdocid;
  window.open(wind,'dettagliomag','width=700,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=no');
  return true;
  
}
function sess_vis(tabella,campo,campoid,tipo,id)
    {
       document.getElementById('tabella').value=tabella;
       document.getElementById('campo').value=campo;
       document.getElementById('campoid').value=campoid;
       document.getElementById('tipo').value=tipo;
       document.getElementById('id').value=id;
       visual.submit();
//       visualizza2(tabella,campo,campoid,tipo,id);
       return true;
    }
function visualizza2()
    {
         window.open('visualizza.php','visualizza','width=20,height=20,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no');
        return true;
   }

