if(!document.getElementById && document.all)
	document.getElementById = function(id) {
	return document.all[id];
}
else if(!document.getElementById && !document.all)
	document.getElementById = function(id) {
	return { style: {} };
}
function verifform(zis) {
	if (document.getElementById("search").pseudo.value=="")	{ 
  		alert("Veuillez saisir un pseudo pour la recherche.");
  		document.getElementById("search").pseudo.focus();
	return false;
 	}
	zis.action="/trouver-photos-amateurs-de-"+document.getElementById("search").pseudo.value+".html";
	return true;
}