<!--
var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Gestionar todos los mensajes de FSCommand de una película Flash
function menu_DoFSCommand(command, args) {
	var menuObj = isInternetExplorer ? document.all.menu : document.menu;
	//
	// Introduzca su código aquí.

	if (command == "1e") {
		document.URL = ("../index.htm");
	}
	if (command == "2e") {
		document.URL = ("../Servicios/index.htm");
	}
	if (command == "3e") {
		document.URL = ("../clientes/index.htm");
	}
	if (command == "4e") {
		document.URL = ("../Contacto/index.htm");
	}
	if (command == "5e") {
		document.URL = ("../ayudas/index.htm");
	}
	if (command == "6e") {
		document.URL = ("../Formularios/presupuesto.htm");
	}
	if (command == "7e") {
		document.URL = ("../Formularios/informacion.htm");
	}	

	if (command == "1f") {
		document.URL = ("../findex.htm");
	}
	if (command == "2f") {
		document.URL = ("../Servicios/findex.htm");
	}
	if (command == "3f") {
		document.URL = ("../clientes/findex.htm");
	}
	if (command == "4f") {
		document.URL = ("../Contacto/findex.htm");
	}
	if (command == "5f") {
		document.URL = ("../ayudas/findex.htm");
	}
	if (command == "6f") {
		document.URL = ("../Formularios/fpresupuesto.htm");
	}
	if (command == "7f") {
		document.URL = ("../Formularios/finformacion.htm");
	}	


	if (command == "1i") {
		document.URL = ("../iindex.htm");
	}
	if (command == "2i") {
		document.URL = ("../Servicios/iindex.htm");
	}
	if (command == "3i") {
		document.URL = ("../clientes/iindex.htm");
	}
	if (command == "4i") {
		document.URL = ("../Contacto/iindex.htm");
	}
	if (command == "5i") {
		document.URL = ("../ayudas/iindex.htm");
	}
	if (command == "6i") {
		document.URL = ("../Formularios/ipresupuesto.htm");
	}
	if (command == "7i") {
		document.URL = ("../Formularios/iinformacion.htm");
	}	


	if (command == "1a") {
		document.URL = ("../aindex.htm");
	}
	if (command == "2a") {
		document.URL = ("../Servicios/aindex.htm");
	}
	if (command == "3a") {
		document.URL = ("../clientes/aindex.htm");
	}
	if (command == "4a") {
		document.URL = ("../Contacto/aindex.htm");
	}
	if (command == "5a") {
		document.URL = ("../ayudas/aindex.htm");
	}
	if (command == "6a") {
		document.URL = ("../Formularios/apresupuesto.htm");
	}
	if (command == "7a") {
		document.URL = ("../Formularios/ainformacion.htm");
	}	


	//
}
// Ancla para Internet Explorer
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<script language=\"VBScript\"\>\n');
	document.write('On Error Resume Next\n');
	document.write('Sub menu_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call menu_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}
//-->