// JavaScript Document
var nav=navigator.appName;
var Ver=parseInt(navigator.appVersion); 
bouton1 = new Image();
bouton2 = new Image();
bouton3 = new Image(); 
bouton4 = new Image(); 
bouton5 = new Image(); 
bouton6 = new Image(); 
bouton7 = new Image();
bouton8 = new Image();
bouton9 = new Image();
bouton10 = new Image();
bouton1.src = "menu1a.gif";
bouton2.src = "menu1b.gif";
bouton3.src = "menu3a.gif"; 
bouton4.src = "menu3b.gif";
bouton5.src = "menu5a.gif";
bouton6.src = "menu5b.gif";
bouton7.src = "menu7a.gif"; 
bouton8.src = "menu7b.gif";
bouton9.src = "menu9a.gif"; 
bouton10.src = "menu9b.gif";


function move_img(img_name,img_url) {

if (document.getElementById) {
//Code pour Nescape Navigator 6 et Internet Explorer 5;
document.images[img_name].src= eval(img_url+".src");
}

else if (document.layers) {
//Code pour Nescape Navigator 4.x;
document.layers['calque'].document.images[img_name].src=eval(img_url+".src");
}

else if (document.all && !document.getElementById) {
//Code pour Internet Explorer 4.x;
document.all['calque'].document.images[img_name].src=eval(img_url+".src");
}
}


function openWin(url, nom, largeur, hauteur)
		{
        var MinWin, winOpts="width=" + largeur + ",height=" + hauteur + ",resizable=no,scrollbars=yes";
        MinWin = window.open(url, nom, winOpts);
		MinWin.moveTo(0,0);
		}
function openWinNo(url, nom, largeur, hauteur)
		{
        var MinWin, winOpts="width=" + largeur + ",height=" + hauteur + ",resizable=no,scrollbars=no";
        MinWin = window.open(url, nom, winOpts);
		MinWin.moveTo(0,0);
		}		
		
function envoi(){
				if(document.getElementById('mois').value=="" && document.getElementById('ville').value=="" && document.getElementById('pays').value==""){
				alert("Veuilez sélectionner un ou plusieurs critères pour votre recherche !");
				}
else{document.getElementById('formulaire').submit();}
}		