// Popup
function popUp (thisURL) { 
	if (document.getElementById) { 
		width = "545";
		height = "585";
		window.open(thisURL.href, "popUp", "resizable,scrollbars=yes,width="+width+",height="+height+""); 
		return false; 
	} else { 
		return true; 
	} 
}
function flashTour (thisURL) { 
	width = "350";
	height = "350";
	window.open(thisURL, "popUp", "resizable,width="+width+",height="+height+""); 
}
