// JavaScript Document
// Utilitaire OG

function Valider(touche, bouton,mode) {
 if(touche.keyCode == 13) { bouton.focus(); bouton.click();  touche.returnValue = false; }
 if(touche.which == 13 ) {  bouton.focus(); bouton.click();  return false;}
 if (mode==1)
 {
 if(touche.keyCode < 45 || touche.keyCode > 57) touche.returnValue = false; 
 if(touche.which < 45 || touche.which > 57) return false;
 }
}

function fenetrebig(myloc) {
newFen = window.open   (myloc,"","menubar=no,scrollbars=1,width=620,height=770, screenx = 50,screeny= 20,top=20,left=50");
 newFen.focus();
}