// JavaScript Document

function recherche()
	{
	
		var keyword = document.getElementById('rechercher_key').value;
		
		if(keyword!='')
		{
			
			window.location.href='http://www.bastons-bagarres.com/recherche-videos-'+encodeURIComponent(keyword)+'/index.html';
		}
		else
		{
			alert('Indiquez au moins un mot-clef...');
		}
	
	}