function VerifMail(TheMail) {
	ChaineReg=/^[a-z0-9._-]+@[a-z0-9.-]{2,}[.][a-z]{2,3}$/;
 	if (ChaineReg.exec(TheMail.toLowerCase()) == null) return false; else return true;
}

function KeyBlocked (start, end) {
	if (window.event.keyCode < start || window.event.keyCode > end)
		event.returnValue = false;
	else
	return true;
}

var position=0;
var msg="Le specialiste de la vente de figurines, para bd, produits dérivés et collector           ";
for (count=0; count<10;count=count+1) { msg=msg+""+msg; }

function banniere() {
	document.affichage.texte.value=msg.substring(position,position+115);
	position=position+1;
	if (position==100) position=0;
	setTimeout("banniere()",150);
}

function clearField() {
	if (document.getElementById("txtSearch").value == "Tapez votre recherche") document.getElementById("txtSearch").value = "";
}

function goSearch() {
	if (verifSearch()) document.search.submit();
}

function verifSearch() {
	if (document.getElementById("txtSearch").value.length < 3) {
		alert("Veuillez saisir un mot significatif pour lancer la recherche...");
		document.getElementById("txtSearch").focus();
		return false;
	}
	return true;
}

function verifReturn() {
	if (document.getElementById("txtSearch").value.length < 3) {
		alert("Veuillez saisir un mot significatif pour lancer la recherche...");
		document.getElementById("txtSearch").focus();
		event.returnValue=false;
	}
	return true;
}