// JavaScript Documentfunction redirige(adresse) {	switch (adresse) {		// Aquitaine		case 'AQUI':			document.location = 'choix-ville.asp?reg=2&immo=hab';			break;		// Midi-Pyrennées		case 'MIDI':			document.location = 'choix-ville.asp?reg=12&immo=hab';			break;		// Poitou-Charentes		case 'POIT':			document.location = 'choix-ville.asp?reg=18&immo=hab';			break;		// Pays de la Loire		case 'PAYS':			document.location = 'choix-ville.asp?reg=16&immo=hab';			break;		// Bretagne		case 'BRET':			document.location = 'choix-ville.asp?reg=5&immo=hab';			break;		// Haute-Normandie		case 'HAUT':			document.location = 'choix-ville.asp?reg=15&immo=hab';			break;		// Basse-Normandie		case 'BASS':			document.location = 'choix-ville.asp?reg=14&immo=hab';			break;		// Picardie		case 'PICA':			document.location = 'choix-ville.asp?reg=17&immo=hab';			break;		// Nord Pas de Calais		case 'NORD':			document.location = 'choix-ville.asp?reg=13&immo=hab';			break;		// Ile de France		case 'IDF':			document.location = 'choix-ville.asp?reg=21&immo=hab';			break;		// Centre		case 'CENT':			document.location = 'choix-ville.asp?reg=6&immo=hab';			break;		// Limousin		case 'LIMO':			document.location = 'choix-ville.asp?reg=10&immo=hab';			break;		// Auvergne		case 'AUVE':			document.location = 'choix-ville.asp?reg=3&immo=hab';			break;		// Champagne-Ardennes		case 'CHAM':			document.location = 'choix-ville.asp?reg=7&immo=hab';			break;		// Lorraine		case 'LORR':			document.location = 'choix-ville.asp?reg=11&immo=hab';			break;		// Alsace		case 'ALSA':			document.location = 'choix-ville.asp?reg=1&immo=hab';			break;		// Bourgogne		case 'BOUR':			document.location = 'choix-ville.asp?reg=4&immo=hab';			break;		// Franche-Comté		case 'FRAN':			document.location = 'choix-ville.asp?reg=8&immo=hab';			break;		// Rhône-Alpes		case 'RHON':			document.location = 'choix-ville.asp?reg=20&immo=hab';			break;		// Provence-Alpes-Côte d'Azur		case 'PACA':			document.location = 'choix-ville.asp?reg=19&immo=hab';			break;		// Languedoc-Roussillon		case 'LANG':			document.location = 'choix-ville.asp?reg=9&immo=hab';			break;		// Erreur		default:			alert('Erreur de région');		}}
