 // get our flash movie object	var flashMovie;	function initConf() {			if (document.getElementById) {					flashMovie = document.getElementById("configurateur");			}	}	// wait for the page to fully load before initializing	$(document).ready(function () {		initConf();	});	   	function displayGuide( url ) {		//window.location.replace(url);		//window.open(url, "configurateur");      	masqueShow();		initPopin();//dans scripts/popin.js		showPopin();//dans scripts/popin.js		window.location="#header";		$("#layerPopin").load(url, function(){loadAll();});	}// get our flash movie object					
