
// ---------- script properties ----------


var results_location = "resultats.htm";


// ---------- end of script properties ----------


function search_form(Form_fr) {
	if (Form_fr.d.value.length > 0) {
		document.cookie = "d=" + escape(Form_fr.d.value);
		window.location = results_location;
	}
}
