// JavaScript Document

function clearInput(Element){
	Element.value = "";
	return true;
}

function ValidSearch(){

	if(document.searchform.nom.value == "Nom du restaurant"){
		document.searchform.nom.value = "";
	}
	
	return true;

}