function showNewslatterForm() {

	container = document.getElementById("newsletterContainer");

	if (container.style.display == "none") {
		container.style.display = "block";
	}else {
		container.style.display = "none";
	}

}