// JavaScript Document

function getXhr() {
	var xhr = null; 
	if(window.XMLHttpRequest)
		xhr = new XMLHttpRequest(); 
	else if(window.ActiveXObject) {
		try {
			xhr = new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e) {
			xhr = new ActiveXObject("Microsoft.XMLHTTP");
		}
	}
	else {
		alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest..."); 
		xhr = false; 
	} 
	return xhr;
}

// Envoi message contact
function ChangeVille(ChoixVille) {
	var xhr = getXhr();
	xhr.onreadystatechange = function() {
		if(xhr.readyState == 4 && xhr.status == 200)
			{
			document.getElementById('diapos_ville').innerHTML=xhr.responseText;
			// BeginOAWidget_Instance_2141543: #ImageSlideShow
			var ImageSlideShow = new Spry.Widget.ImageSlideShow("#ImageSlideShow", {
				widgetID: "ImageSlideShow",
				widgetClass: "BasicSlideShowFS",
				injectionType: "replace",
				autoPlay: true,
				displayInterval: 4000,
				transitionDuration: 2000,
				componentOrder: ["name", "title", "view", "controls", "links"],
				sliceMap: { BasicSlideShowFS: "3slice", ISSSlideLink: "3slice" },
				plugIns: [ Spry.Widget.ImageSlideShow.ThumbnailFilmStripPlugin, Spry.Widget.ImageSlideShow.TitleSliderPlugin, Spry.Widget.ImageSlideShow.PanAndZoomPlugin ],
				TFSP: { pageIncrement: 8, wraparound: true }
			});
			// EndOAWidget_Instance_2141543
		}
	}
	xhr.open("POST","Scripts/SelectVille.php",true);
	xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
	xhr.send("ville="+ChoixVille);
}

