//Changement langue
function change_version(ver)
{
window.location.href=ver;
}

/*Ouverture d'une page dans une nouvelle fentre*/
function ouvrir_new_fen(adresse,largeur,hauteur){
open(adresse,"","Width="+largeur+",height="+hauteur+",scrollbars=yes,status=yes,menubar=nos,location=nos,resizable=yes");
}

/* Verif recherche BUS*/
function verif_vol()
{
var controle=0;
for (i=0;i<2;i++)
	{
	if (window.document.rech_vols.elements[4].value =="")
		{
		if ((window.document.rech_vols.elements[0].value == "") || (window.document.rech_vols.elements[0].value == "fr"))
			alert ("Le champ \"De/Vers\" est vide!" );
		else
			alert ("The Field \"From/To\" is empty!" );
		controle=1;
		break;
		}
	if (window.document.rech_vols.elements[5].value =="")
		{
		if ((window.document.rech_vols.elements[0].value == "") || (window.document.rech_vols.elements[0].value == "fr"))
			alert ("Le champ \"Date\" est vide!" );
		else
			alert ("The Field \"Date\" is empty!" );
		controle=1;
		break;
		}	
if (controle==0)
	window.document.rech_vols.submit();
	break;
	}
}