
//Gestion des urls du formulaire de recherche

//toutou.require('toutou.html.dom');
//toutou.require('toutou.utils.strings');




if(typeof js == "undefined") {
	js = {};
	js.imgPath = "";
}


js.recherche = new function() {
	this.update_action = function(lang){
		var form = document.getElementById('formRecherche');
		var input = document.getElementById('inputRecherche');
		
		var input_value = input.value;
		
		//Cleanup
		input_value = input_value.replace(/\s+/g,'_');		
		input_value = input_value.replace(/'/g,'_');

		var rExps=[ /[\xC0-\xC2]/g, /[\xE0-\xE2]/g,
				/[\xC8-\xCA]/g, /[\xE8-\xEB]/g,
				/[\xCC-\xCE]/g, /[\xEC-\xEE]/g,
				/[\xD2-\xD4]/g, /[\xF2-\xF4]/g,
				/[\xD9-\xDB]/g, /[\xF9-\xFB]/g ];

		var repChar=['A','a','E','e','I','i','O','o','U','u'];

		for(var i=0; i<rExps.length; i++)
			input_value=input_value.replace(rExps[i],repChar[i]);



		
		
		form.action = 'http://tourisme.grandesetapes.fr/'+lang+'/recherche/'+input_value+'.htm';
	}
}