 function pageFormate(chemin,larg,haut) {
        dx = larg;
        dy = haut;
        px = (screen.width  - dx) / 2;
        py = (screen.height - dy) / 2;
        subwin = window.open(chemin,"Administration","directories=no,location=no,menubar=no,toolbar=no,status=no,scrollbars=yes,toolbar=no,resizable=no,"+"left="+px+",top="+py+",width="+dx+",height="+dy);
        subwin.focus();
        }


function confirmation(reference) {
     	if (!confirm("Confirmation:  Delete" + unescape(reference) + " !")) {
		return false;
		}
		}
		
function verifChiffre() {
		var chkZ = 1;
        for(i=0;i<document.ResultatPage.nbpage_bidule.value.length;++i)
        if(document.ResultatPage.nbpage_bidule.value.charAt(i) < "0"
        || document.ResultatPage.nbpage_bidule.value.charAt(i) > "9")
         chkZ = -1;
         if(chkZ == -1) {
         alert("Cette mention n'est pas un nombre!");
         document.ResultatPage.nbpage_bidule.focus();
         return false; 
        }
		}
		
		
function changeCouleur(cellule,couleurFond) {
        // Cette fonction modifie la couleur de fond 
        cellule.style.backgroundColor = couleurFond;
        }
