function getFlash() {
	window.open("http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash");
}
function flashLink() {
	if (arguments.length == 1){			//Navigate with no GA or Target
		location.href = arguments[0];
	} else if (arguments.length == 2) {		//Navigate with Target, No GA
		if (arguments[1] == "_self") {
			location.href = arguments[0];
		} else {
			window.open(arguments[0], arguments[1]);
		}
	} else if (arguments.length == 3) {		//Navigate with Target AND GA
		 pageTracker._trackPageview(arguments[2]);
		if (arguments[1] == "_self") {
			location.href = arguments[0];
		} else {
			window.open(arguments[0], arguments[1]);
		}
	}
}

function openInteractiveTourV4(path,name) {
	window.open(path,name,'width=955,height=600,left=0,top=0');
}
