<!-- 


// Version check for the Flash Player that has the ability to start Player Product Install (6.0r65)
var hasProductInstall = DetectFlashVer(6, 0, 65);

// Version check based upon the values entered above in "Globals"
var hasRequestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);


// Check to see if a player with Flash Product Install is available and the version does not meet the requirements for playback
if (hasProductInstall && isWin && !hasRequestedVersion) {

    // Location visited after installation is complete if installation is required
    var MMredirectURL = window.location;

    // Stored value of document title used by the installation process to close the window that started the installation process
    // This is necessary to remove browser windows that will still be utilizing the older version of the player after installation is complete
    // DO NOT MODIFY THE FOLLOWING TWO LINES
    document.title = document.title.slice(0, 47) + " - Flash Player Installation";
    var MMdoctitle = document.title;

    var productInstallOETags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="916" height="149"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="flash/detect.swf?MMredirectURL='+MMredirectURL+'&MMplayerType=ActiveX&MMdoctitle='+MMdoctitle+'" />'
    + '<param name="quality" value="high" /><param name="bgcolor" value="#3A6EA5" />'
    + '<embed src="flash/detect.swf?MMredirectURL='+MMredirectURL+'&MMplayerType=PlugIn" quality="high" bgcolor="#3A6EA5" '
    + 'width="916" height="149" name="detectiontest" aligh="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';

	// embed the Flash Product Installation SWF
    document.write(productInstallOETags);   

	UpdateStarted = true;

} 

// if we've detected an acceptable version
else if (hasRequestedVersion) {  

    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="916" height="149">'
        		  +'<param name="movie" value="flash/goethe.banner.swf">'
        		  +'<param name="quality" value="high">'
        		  +'<embed src="flash/goethe.banner.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="916" height="149"></embed>'
    		    +'</object>';

	// embed the Flash Content SWF when all tests are passed
    document.write(oeTags);   

} 

// flash is too old or we can't detect the plugin
else {  

    var alternateContent = '<img width="916" height="149" border="0" src="gfx/banner_tlo.jpg" usemap="#BannerMapa">';

	// insert non-flash content
    document.write(alternateContent);  

}


-->
