// ** Manipulates the URL data after the hash mark (#) for deeplinking


// get the page name listed after the hash mark (#)
function getHash(){
	if (location.hash != ''){
		page = location.hash.slice (1);
	}else{
		page = 'Home';
	}
	return (page);
}


// Update URL (called from Flash External Interface Object)
function updateURL(name){
	if (name == null){
		location.hash = null;	
	}
	
	location.hash = name;
}

