  var Comu = new Array(2);  
  Comu[0] = new Array(17);
  Comu[0][0] = 'GAL';
  Comu[0][1] = 'AST';
  Comu[0][2] = 'CAN';
  Comu[0][3] = 'EUS'; 
  Comu[0][4] = 'NAV';
  Comu[0][5] = 'ARA';
  Comu[0][6] = 'CAT';
  Comu[0][7] = 'CLE';
  Comu[0][8] = 'RIO';
  Comu[0][9] = 'EXT';
  Comu[0][10] = 'MAD';
  Comu[0][11] = 'CMA';
  Comu[0][12] = 'VAL';
  Comu[0][13] = 'AND';
  Comu[0][14] = 'MUR';
  Comu[0][15] = 'IBA';
  Comu[0][16] = 'ICA';
  
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the the FSCommand messages in a Flash movie
function Mapa_DoFSCommand(command, args) {
  var MapaObj = InternetExplorer ? Mapa : document.Mapa;
  var indice;
  var i;
  indice=0;
		for ( i = 0 ; i < 17; i++){
  			if (Comu[0][i] == args){
				indice = i;
			}			
		}
		//nuevo código para llamar al programa ASP
		//window.navigate("Contar.asp?paso="+Comu[0][indice]);
		
		parent.der.location.href="../EspanaDer.htm";
		parent.izq.location.href="Contar.asp?paso="+Comu[0][indice];
		
		}
// Hook for 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 Mapa_FSCommand(ByVal command, ByVal args)\n');
	document.write('  call Mapa_DoFSCommand(command, args)\n');
	document.write('end sub\n');
	document.write('</SCRIPT\> \n');
}

