/**
 * Jump to different places in main flash movie
 */
function SetSceneByLocationHash () {
	var hash = location.hash;
	if (hash != undefined && hash != '') {
		PlayFlashMovie(hash);
	}
}
