function soumettre(){ if(document.form.Recherche.value!="") window.location="/GEDIA/site.nsf/vRecherche?SearchView&Query="+document.form.Recherche.value+"&"; } function suivant(){ path = document.form.Path.value; Annee = document.form.Annee.value; Month = document.form.Mois.value; if(parseInt(Month)==12){ Month = 1; Annee = parseInt(Annee) + 1 ; } else{ Month = parseInt(Month) + 1; } if(path==""){ path = window.location; } else{ path = document.form.Path.value } window.location= path + "&M="+Month+"&A="+Annee; } function precedent(){ path = document.form.Path.value; Annee = document.form.Annee.value; Month = document.form.Mois.value; if(parseInt(Month)==1){ Month = 12; Annee = parseInt(Annee) - 1 ; } else{ Month = parseInt(Month) - 1; } if(path==""){ path = window.location; } else{ path = document.form.Path.value } window.location= path + "&M="+Month+"&A="+Annee; }