<!-- 
function Redirect()
{
	ville=document.recherche_hotel.destination.value;
	 marque=document.recherche_hotel.marque.options[document.recherche_hotel.marque.selectedIndex].value;
    URL="http://service.bfast.com/bfast/click?bfmid=34808004&siteid=41184522&bfpage=bfrd&bfplink=moteur_120150_ach_fr&bfurl=http%3A%2F%2Fwww.accorhotels.com%2Faccorhotels%2Flien_externe.svlt%3Fgoto=liste_hotel%26nom_ville%3D" + ville + "%26code_chaine%3D" + marque;
	if(marque!=0)
	{
	 //IE
	 if (document.all)
     	msgWindow = window.open(URL,'newWin','top=0,left=0,location=yes,toolbar=yes,directories=yes,menubar=yes,resizable=yes,scrollbars=auto,status=yes,width=' +screen.availWidth+ ',height=' +screen.availHeight);
	 //Netscape
	 else if (document.layers) 		
		{
		msgWindow = window.open(URL,'newWin','location=yes,toolbar=yes,directories=yes,menubar=yes,resizable=yes,scrollbars=auto,status=yes');		
		window.msgWindow.moveTo(0,0);
		window.msgWindow.outerHeight = screen.availHeight;
		window.msgWindow.outerWidth = screen.availWidth;
		}
	}
	else{
	document.recherche_hotel.submit();
	}
}
 // -->
