// POPIN  VIDEO //////////////////////////////////////////////////////////////////

function videoPopIn(){
	emailwindow=dhtmlmodal.open('videoBox', 'ajax', 'includes/videoplayer.php', 'Reportage', 'width=612px,height=412px,center=1,resize=0,scrolling=0')

emailwindow.onclose=function(){ //Define custom code to run when window is closed
	var theform=this.contentDoc.forms[0] //Access first form inside iframe just for your reference
	var theemail=this.contentDoc.getElementById("emailfield") //Access form field with id="emailfield" inside iframe
	if (theemail.value.indexOf("@")==-1){ //crude check for invalid email
		alert("Please enter a valid email address")
		return false //cancel closing of modal window
	}
	else{ //else if this is a valid email
		document.getElementById("youremail").innerHTML=theemail.value //Assign the email to a span on the page
		return true //allow closing of window
	}
}
}



// SLIDESHOW de la HOMEPAGE //////////////////////////////////////////////////////////////

	var photosTab = new Array();
	photosTab = ["photo1.jpg", "photo2.jpg", "photo3.jpg"];
	var legendesTab = new Array();
	legendesTab = ['La Maison Des Travaux a présenté son concept au <span class="bold">salon Franchise Expo Paris</span> en mars 2009.', 'Véhicule de courtier aux couleurs de <span class="bold">La Maison Des Travaux</span>.', 'Agence conseils La Maison Des Travaux à Antony (92)'];

	var flag = 2;
	
	function permutation() {
		document.getElementById("photoLMDT").src = "img/home/"+photosTab[flag-1];
		document.getElementById("legendePhoto").innerHTML = legendesTab[flag-1];
		flag++;
		if (flag > photosTab.length) { flag = 1; }
	}
	
	function LMDTShow() {
		boucle = setInterval(permutation,5000);
	}