// JavaScript Document
function selectLangage(l)
{
	document.forms[0].action="index.php";
	document.forms[0].CHOIX.value="selectLangage";
	document.forms[0].langage.value=l;
	document.forms[0].submit();
	return;
}
function selectPays()
{
	document.forms[0].action="index.php";
	document.forms[0].CHOIX.value="selectPays";
	document.forms[0].submit();
	return;
}
function selectLocation()
{
	document.forms[0].action="index.php";
	document.forms[0].CHOIX.value="selectLocation";
	document.forms[0].submit();
	return;
}

function Ok()
{ 
		document.forms[0].action="rent.php";
		document.forms[0].CHOIX.value="selection";
		document.forms[0].submit();
		return;
}

function Ok_online()
{ 
	document.forms[0].action="rent.php";
	document.forms[0].CHOIX.value="selection";
	document.forms[0].reservation_online.value="1";
	document.forms[0].submit();
	return;
}

