/****************************************************************************flashInstallHandlers.jsThis Javascript file is intended to be used with the Flash Express Install component.  There are three different scenarios that require handling when usingthe component:- the user declines (doesn't want to install Flash)- the user accepts, and install completes - the user accepts, and the install failsCopy this file and reuse it for the purposes of your page, however keep the namesof the functions the same, as the swf invokes these specifically.- R. Sanchez, Dec 7, 2005****************************************************************************/function declineRedirect(){ alert("As Flash Player 8 is required to view rtdbook.com, you will be redirected to Macromedia to install the player."); window.location = "http://macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&promoid=BIOW";}function installRedirect(){ window.close();}function installFailedRedirect(){ alert("Installation failed.  You will have to install the Flash Player using the link below."); document.getElementById('enter_4').style.display = "block"; document.getElementById('enter_3').style.display = "none"; }
