// JavaScript Document


	function displayImageWindow(disp) {
		var theBox = document.getElementById('specials_box');
		if (disp == "show"){
			theBox.style.display = 'block';
		}
		else if (disp == "hide"){
			theBox.style.display = 'none';
		}

	}



	
