function verifierSuppressionInscription(tournoi,tableau,serie,nbDemande,idInscription)
{
	//alert(document.getElementById('mdp1_j').value);
	if (confirm("Voulez vous supprimer votre inscription sans partenaires pour  le \n " +tournoi+" \n dans \n la serie "+serie+"  \n le tableau  "+tableau+"? \n \n Vous avez "+nbDemande+" demandes recues pour cette inscription"))
	{
	document.location="index.php?page=supprInscription&txtIdInscription="+idInscription;
	}
	//verifierPseudo();
	//return true;
}
function verifierSuppressionDemande(tournoi,tableau,serie,nom,prenom,idDemande)
{
	//alert(document.getElementById('mdp1_j').value);
	if (confirm("Voulez vous supprimer votre demande de partenariat pour  le \n " +tournoi+" \n dans \n la serie "+serie+"  \n le tableau  "+tableau+" \n avec "+prenom+" "+nom+" ?"))
	{
	document.location="index.php?page=supprDemande&txtIdDemande="+idDemande;
	}
	//verifierPseudo();
	//return true;
}

