function flashEmbedCallback(e){
	if(e.success) {
		//Flash Loads
		jQuery('body').addClass("flashenabled");
		jQuery('#flashcontent').addClass("flashcontent");
	} else {
		declinedExpressInstall();
		jQuery('#main-container').css('display', 'block');
		jQuery('.safety-static-image').css('display', 'block');
		initGui();
		
		var match = /^#\/([a-zA-Z0-9\-]+)\/?([a-zA-Z0-9\-]+)?/i.exec(document.location.hash);
		var pageName = (match) ? match[1] : 'home';
		if(match && match[2]) {
			if(match[2] === 'gallery' || match[2] === 'request-a-brochure' || match[2] === 'specs-options' || match[2] === 'press') pageName = match[2];
		}
		
		trackHtmlPageLoad(pageName || 'home');
		//jQuery('#gizmoS').css('display', 'block');
	}			
}