/*
FUNCTIONS.JS
ExternalInterface calls and GA manipulation
*/

var isIE         = /MSIE (\d+\.\d+);/.test(navigator.userAgent);
var isIE6        = /msie|MSIE 6/.test(navigator.userAgent);


// ExternalInterface
function updateHashLocation(hash, title) {
	window.location.hash = hash;
	document.title       = "Youth Opinions Unite: " + title;
	
	// Google Analytics track
	try {
		pageTracker._trackPageview(hash);
	}
	catch(e) {}
}

function getHashLocation() {
	// alert("Passing " + window.location.hash + " to Flash");
	return window.location.hash;
}

