function addFooter(){
	footerDiv = document.getElementById("descriptionFooter");
	footerDiv.style.color="#000000";
	footerDiv.style.fontFamily="Arial, Comic Sans MS, Times";
	footerDiv.style.fontSize="12px";
	footerDiv.style.textAlign="center";

	footerDiv.style.position = 'relative';
	
	footerNews = document.getElementById("newsletter");
	if (footerNews!='')
	{
		if(window.devicePixelRatio)
		{
			footerDiv.style.bottom="183px";
		}
		else
		{
			footerDiv.style.bottom="100px";
		}
	}
	else
	{
		if(window.devicePixelRatio)
		{
			footerDiv.style.bottom="193px";
		}
		else
		{
			footerDiv.style.bottom="155px";
		}
	}
	
	footerDiv.style.left="0";
	footerDiv.style.width="100%";
	footerDiv.style.height="30px";
	footerDiv.style.display="block";


	document.body.appendChild(footerDiv);
}

