// doors colour page, turning images on and off

function alloff()  {
	if (document.getElementById) {
		for (var i = 1; i <=4; i++) {
			target =  document.getElementById("dImage0"+i);
			target.style.display = "none";
			}
	}
}

function imageon( targetId ) {
	if (document.getElementById) {
		target2 = document.getElementById( targetId );
		target2.style.display = "block";
	}
}
