/*
	Handler functions that are fired from the ExpressInstaller
	for Flash.
*/

/* Called when ExpressInstall has been completed. */
function xInstallComplete() {
	window.close();
}

/* Called when ExpressInstall has been canceled via clicking 'No'. */
function xInstallCancelled() {
	alert('As Flash Player 7 or greater is required to view this website, you will be redirected to the Hyatt GoldPassport homepage.');
	document.getElementById('flashcontent').innerHTML = ''; //Added to fix IE bug with Flash 6 with the ExpressInstall, Might need this in some cases for install completion as well. Please ensure to test!
	window.location.href = "http://goldpassport.hyatt.com/gp/en/index.jsp";
}

/* Called when ExpressInstall has failed. */
function xInstallFailed() {
	alert('Installation failed.  You will have to install the Flash Player using the link below.');
	document.getElementById('downloadflash').style.display = 'block';
}