// JavaScript Document

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