function addFooter(){
	footerDiv = document.createElement("div");
	footerDiv.style.backgroundColor="#ffffff";
	footerDiv.style.color="#663300";
	footerDiv.style.fontFamily="courrier";
	footerDiv.style.fontSize="14px";
	footerDiv.style.textAlign="center";
	footerDiv.style.padding="0 0 0 0";
	footerDiv.style.margin="0";
	footerDiv.style.borderWidth="0";
	footerDiv.style.borderstyle="none";				
	textToDisplay = "</br>TEATRO PAZZO - 15, rue Henri Chevreau - 75020 Paris - FRANCE - M° Ménilmontant</br>01 43 47 50 76 - 06 60 02 23 96 - accueil@teatropazzo.com";	
	footerDiv.innerHTML= textToDisplay;
	document.body.appendChild(footerDiv);}


