function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function test_envoi() {
	var errors = "";
	var objet = document.forms[0];
	
	if (isNaN(objet.code.value))
		errors += traduction[451] + "\n";
		else {
			if (objet.code.value >= 96000) errors += traduction[438] + "\n";
			moncode=objet.code.value;
			if (moncode.length != 5) errors += traduction[450] + "\n";
		}
// valide le formulaire ou non
  	if (errors) alert(traduction[338] + " :\n" + errors);
  	document.confirmation = (errors == '');
}
