showing=1;

function clickPromo(culture) { 
	if (!showing) {
		showing = 1;
		document.getElementById("PromoNewsOpen").style.visibility = "visible";
		document.getElementById("PromoNewsClosed").style.right = "220px";
		document.images.promoButton.src = "" + culture +"/tabClose.gif";
		
	} else {
		showing = 0;
		document.getElementById("PromoNewsOpen").style.visibility = "hidden";
		document.getElementById("PromoNewsClosed").style.right = "0px";
		document.images.promoButton.src = "" + culture + "/tabOpen.gif";

	}
}
