function cmsZoom(pageSource, pageName, theHeight, theWidth)
{
	showScrollbars = '';
	leWindow = window.open(pageSource, pageName, 'width='+theWidth+',height='+theHeight+','+showScrollbars+'resizable'); 
	leWindow.resizeTo(theWidth,theHeight);
	leWindow.focus();
}

//function to display or hide a Video Map and Gallery Elments
function showHideItems(myItem) {
	//this is the ID of the hidden item
	//var myItem = document.getElementById(myItem);
	//if items are currently displayed, hide them...
	
	if(myItem == "Gallery")
	{
		//alert(myItem);
		document.getElementById("FlashVideo").style.display = "none" ;
		document.getElementById("Gallery").style.display = "block" ;
		document.getElementById("Map").style.display = "none" ;
	
	
	//	myItem.style.display = "none";
	}
	else if (myItem == "Map")
	{
		document.getElementById("FlashVideo").style.display = "none" ;
		document.getElementById("Gallery").style.display = "none" ;
		document.getElementById("Map").style.display = "block" ;
	
	}
	
	else
	{
		//alert("it got here");
		document.getElementById("FlashVideo").style.display = "block" ;
		document.getElementById("Gallery").style.display = "none" ;
		document.getElementById("Map").style.display = "none" ;
		
	
		//myItem.style.display = "block";
		
	}
}