/**
 * @author sergio
 */
function Ricerca(e){
	if (window.event){
		if(window.event.keyCode == 13){
			self.location.href="ricerca.php?q="+escape(document.getElementById('search').value);
		}	
	}else if (e){
		if(e.which == 13){
			self.location.href="ricerca.php?q="+escape(document.getElementById('search').value);
		}	
	}
}