$(document).ready(function() {
	
	// validate signup form on keyup and submit
	$("#frmcompte").validate({
		rules: {
			// global
			mdp: {
				required: true
			},
			email: {
				required: true,
				email: true
			}
		},
		messages: {
			// global
			mdp: {
				required: "Veuillez saisir votre mot de passe"
			}, 
			email: {
				required: "Format d'email invalide",
				email: "Format d'email invalide"
			}
		}
	});
	
	$("#btnCompte").click(function(){
	//	xt_med('C','1',' Creation_compte::Clic_Je_cree ','N')
		window.location = PATHRACINE +"/Creation?"+ PARAMGLOBAL;
		return false;
	});
	
});	
