  <!--
 // Variables to retrieve the FlashVars from a hidden input control set server-side
 /*
	var langID_str = document.forms['flashvars'].langID_txt.value;
	var navID_str = document.forms['flashvars'].navID_txt.value;
	var title_str = document.forms['flashvars'].title_txt.value;
 */
	var whichEMailJSVar = document.forms['flashvars'].whichEMail_txt.value;
	var whichCodigoJSVar = document.forms['flashvars'].whichCodigo_txt.value;
	var whichGrupoJSVar = document.forms['flashvars'].whichGrupo_txt.value;
	var flashVars_str = "&email=" + whichEMailJSVar +"&codigo=" + whichCodigoJSVar +"&grupo=" + whichGrupoJSVar; 
	// 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 defined in globals
	var hasReqestedVersion = 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 && !hasReqestedVersion ) {
		// MMdoctitle is the stored document.title value used by the installation process to close the window that started the process
		// This is necessary in order to close browser windows that are still utilizing the older version of the player after installation has completed
		// DO NOT MODIFY THE FOLLOWING FOUR LINES
		// Location visited after installation is complete if installation is required
		var MMPlayerType = (isIE == true) ? "ActiveX" : "PlugIn";
		var MMredirectURL = window.location;
		document.title = document.title.slice(0, 47) + " - Flash Player Installation";
		var MMdoctitle = document.title; //title_str;
		AC_FL_RunContent(
						"align","middle",
						"allowScriptAccess","sameDomain",
						"FlashVars", "MMredirectURL="+MMredirectURL+'&MMplayerType='+MMPlayerType+'&MMdoctitle='+MMdoctitle+"",
						"id", "playerUpdate",
						"name", "playerUpdate",
						"pluginspage", "http://www.adobe.com/go/getflashplayer",
						"quality", "high",
						"scale","noscale",
						"wmode","transparent",
						"src", "SWF/PlayerProductInstall",
						"type", "application/x-shockwave-flash",
						"width", "790",
						"height", "465"						
		                );
	} else if (hasReqestedVersion) {
		// If we've detected an acceptable version
		// Embed the Flash Content SWF when all tests are passed
		AC_FL_RunContent(
						"align","middle",
						"allowscriptaccess","sameDomain",
                        "codebase","http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0",
						"id","me_encanta_la_navidad_swf",
						"movie","SWF/me_encanta_la_navidad",
						"pluginspage","http://www.macromedia.com/go/getflashplayer",
						"quality","high",
						"scale","noscale",
						"FlashVars",flashVars_str,
						"src","SWF/me_encanta_la_navidad",
	                    "width","790",
						"height","465"
		);	

	} else { // Flash is too old or we can't detect the plugin
	    // Attempt to access the plugin the old-fashioned way
		
		/*var alternateContent ='Alternate HTML content should be placed here.<BR>'
		+ 'This content requires the Adobe Flash Player. '
		+ '<a href=http://www.adobe.com/go/getflash/>Get Flash</a>';
		*/
		var alternateContent ='    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="790" height="465" id="me_encanta_la_navidad_swf">' +
                              '      <param name="align" value="middle" />'+
                              '      <param name="allowScriptAccess" value="sameDomain" />'+
                              '      <param name="movie" value="SWF/me_encanta_la_navidad.swf" />'+
                              '      <param name="quality" value="high" />'+
                              '      <param name="FlashVars" value="' + flashVars_str + '" />'+
                              '      <param name="scale" value="noscale" />'+
                              '      <embed src="SWF/me_encanta_la_navidad.swf" align="middle" allowScriptAccess="sameDomain" quality="high" scale="noscale" width="790" height="465" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></embed>'+
                              '    </object>'
		document.write(alternateContent);  // insert non-flash content
	}
	// -->
