




function addFooter(){
	footerDiv = document.createElement("div");
	footerDiv.style.backgroundColor="#ffffff";
	footerDiv.style.color="#003399";
	footerDiv.style.fontFamily="Arial";
	footerDiv.style.fontSize="10px";
	footerDiv.style.textAlign="left";
	footerDiv.style.padding="0 5 0 5";
	footerDiv.style.margin="0";
	footerDiv.style.borderWidth="0";
	footerDiv.style.borderstyle="none";				
	textToDisplay  = "<hr width='970px' color='#C0DFF8' />";
	textToDisplay += "PARAMOUNT AQUARIUM -- 279 RUE DES PYRENEES 75020 PARIS -- Tel : 01 47 97 11 45 -- info@paramountaquarium.com ----------------------------------------------------      Création y3k --  http://y3k.fr";
	//textToDisplay += "<hr width='970px' color='#cccccc' />";	
	footerDiv.innerHTML= textToDisplay;
	document.body.appendChild(footerDiv);
}

