<!--
// Version check based upon the values entered above in "Globals"
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

// Check to see if the version meets the requirements for playback
if (hasReqestedVersion) {
	// if we've detected an acceptable version
	// embed the Flash Content SWF when all tests are passed
	AC_FL_RunContent(
				"src", "swf/botonera",
				"width", "571",
				"height", "61",
				"align", "middle",
				"id", "botonera",
				"quality", "high",
				"bgcolor", "#FFFFFF",
				"wmode", "transparent",
				"name", "tooltip_swf",
				"allowScriptAccess","sameDomain",
				"type", "application/x-shockwave-flash",
				'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
				"pluginspage", "http://www.adobe.com/go/getflashplayer"
	);
}
	else {  // flash is too old or we can't detect the plugin
				var alternateContent = '<div id="botonera_btn_sup" align="right"><a href="index.php?put=home"><img src="imagenes/btn_home.gif" alt="Home" width="54" height="23" border="0" /></a><img src="imagenes/palito.gif" alt="" width="1" height="23" /><a href="index.php?put=contactenos"><img src="imagenes/btn_contactenos.gif" alt="Cont&aacute;ctenos" width="92" height="23" border="0" /></a></div>'
					+ '<div id="botonera_btn_inf"><a href="index.php?put=quienes_somos"><img src="imagenes/img_boton_1.jpg" alt="Quienes Somos" border="0" /></a><a href="index.php?put=servicios"><img src="imagenes/img_boton_2.jpg" alt="Servicios" width="96" height="38" border="0" /></a><a href="index.php?put=plagas"><img src="imagenes/img_boton_3.jpg" alt="Plagas" width="117" height="38" border="0" /></a><a href="index.php?put=clientes"><img src="imagenes/img_boton_4.jpg" alt="Clientes" width="114" height="38" border="0" /></a><a href="index.php?put=sistema"><img src="imagenes/img_boton_5.jpg" alt="Sistema" width="112" height="38" border="0" /></a></div>';
					document.write(alternateContent);  // insert non-flash content
				}
// -->
