	function rechercheFct() {
		var y=document.createElement('span');
		y.innerHTML='Vous devez saisir au moins 3 caract&egrave;res';
		if(document.recherche_form.recherche.value.length < 3)
		{ alert(y.innerHTML); return false; document.recherche_form.recherche.focus(); }
	}
	function addFavoris() {
		if ( navigator.appName != 'Microsoft Internet Explorer' ){ window.sidebar.addPanel("Cadoon's Boutique","http://www.cadoons-boutique.com/",""); }
		else { window.external.AddFavorite("Cadoon's Boutique","http://www.cadoons-boutique.com/"); }
	} 
	
	function changeEcard() {
		var newimg=document.ecard.modeles.value;
		/*document.getElementById("fondEcard").style.backgroundImage = 'url("../UserFiles/Image/ecards-fonds/' + newimg +'")';*/
		window.location.replace("../pages/?all=ecard&id="+ newimg);
	}	
	
	function verifEcard()
	{   var formulaire = document.ecardForm;
		adresse = formulaire.emailEcard.value;
		var place = adresse.indexOf("@",1);
		var point = adresse.indexOf(".",place+1);
		if ((place > -1)&&(adresse.length >2)&&(point > 1))
			{
			formulaire.submit();
			return(true);
			}
		else
			{
			alert('Entrez une adresse e-mail valide!!');
			return(false);
			}
	}
	