
	function showEaster() {

x1Pos = xsPos("mainpic") + 160;
		y1Pos = ysPos("mainpic");
		if(navigator.platform.indexOf("Mac")!=-1) {
			if(document.all) {
				temp = document.body.clientWidth;
				newPos = temp-772;
				newPos = newPos/2;
				x1Pos -= newPos;
			}
		}
		if(dom){
			document.getElementById("easterbreaks").style.left = x1Pos;
			document.getElementById("easterbreaks").style.top = y1Pos;
			document.getElementById("easterbreaks").style.visibility="visible";
		} else if(ie4){
			document.all.easterbreaks.style.left = x1Pos;
			document.all.easterbreaks.style.top = y1Pos;
			document.all.easterbreaks.style.visibility = "visible";
		}


}