

function ValideRecherche() {
	var sMotCle = document.getElementById("txtMC").value
	if (sMotCle=='') {
		alert('Veuillez saisir votre recherche SVP.');
		document.getElementById("txtMC").focus();
		return false;
	}
	return true;
}

function clickButton(e, buttonid, textId){ 
      
    var bt = document.getElementById(buttonid); 
    var txt = document.getElementById(textId); 
    if (e.keyCode == 13){ 
			if (txt.value=='') {
			alert('Veuillez saisir votre recherche SVP.');
			return false;
		}
		else
		{
			bt.click();
			return false;
		}
	} 
      
     
} 

