  
 function checkSearchFieldIn(){
	if (document.recherche_site.zoom_query.value == 'votre recherche ici...')
		document.recherche_site.zoom_query.value = '';
}

function checkSearchFieldOut(){
	if (document.recherche_site.zoom_query.value == '')
		document.recherche_site.zoom_query.value = 'votre recherche ici...';
}

function searchEngine(){
	if (document.recherche_site.zoom_query.value == 'votre recherche ici...'){
			alert("Veuillez saisir un texte pour votre recherche");
			document.recherche_site.text.focus();
			return;
	}
	document.recherche_site.submit();
}

