// this file contains all of the javascript used on the bruce hotel website

	function HideAllDiv(){
	//this funciton will hide all divs
		document.getElementById('image1').style.display="none"
		document.getElementById('image2').style.display="none"
		document.getElementById('image3').style.display="none"
	}
	
	function ShowHideDiv(shdShowItem){
	//this funciton will show the requested div and hide the others
		//first of all hide all of the div's
		HideAllDiv()
			//now show the div they want to see
			document.getElementById(shdShowItem).style.display="block"
	}
	
	function popUp(URL) {
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=700,left = 390,top = 50');");
		}
