// JavaScript Document
function confirmation(texte,parametre) {
	if (window.confirm(texte))   
                {var page = "admin/delete.php?"+parametre;
				document.location.href=page;}
	}
function confirmation_admin(texte,parametre) {
	if (window.confirm(texte))   
                {var page = "delete.php?"+parametre;
				document.location.href=page;}
	}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}