function redirige(text,url){
	reponse = confirm(text);
	if(reponse){
		window.open(url,'redirige');
	}
}

