<!-- // © César Sánchez Novo 1.998 novo@cybergal.com

var boton = new Array (9)

programa = navigator.userAgent

if (programa.indexOf("MSIE/2") != -1) navegador = 1;
  else if (programa.indexOf("MSIE/3") != -1) navegador = 1;
  else if (programa.indexOf("MSIE/4") != -1) navegador = 3;
  else if (programa.indexOf("MSIE/5") != -1) navegador = 3;
  else if (programa.indexOf("Mozilla/2") != -1) navegador = 2;
  else if (programa.indexOf("Mozilla/3") != -1) navegador = 3;
  else if (programa.indexOf("Mozilla/4") != -1) navegador = 3;
  else navegador = 0;

if (navegador == 3) {
  boton[0] = new Image(40,40) ;
  boton[1] = new Image(40,40) ;
  boton[2] = new Image(40,40) ;
  boton[3] = new Image(40,40) ;
  boton[4] = new Image(40,40) ;
  boton[5] = new Image(40,40) ;
  boton[6] = new Image(40,40) ;
  boton[7] = new Image(40,40) ;
  boton[8] = new Image(40,40) ;
  

  boton[0].src="gifani/mapia1.gif"  
  boton[1].src="gifani/mapia2.gif"  
  boton[2].src="gifani/mapia3.gif"  
  boton[3].src="gifani/mapia4.gif"  
  boton[4].src="gifani/mapia5.gif"  
  boton[5].src="gifani/mapia6.gif"  
  boton[6].src="gifani/mapia7.gif"  
  boton[7].src="gifani/mapia8.gif"  
  boton[8].src="gifani/mapia9.gif"  
  

}

function soltar(num) {
if(navegador == 3 ){
	if (num == 0 )	document.boton0.src="graficos/mapi1.gif"  
	if (num == 1 )	document.boton1.src="graficos/mapi2.gif"  
	if (num == 2 )	document.boton2.src="graficos/mapi3.gif"  
	if (num == 3 )	document.boton3.src="graficos/mapi4.gif"  
	if (num == 4 )	document.boton4.src="graficos/mapi5.gif"  
	if (num == 5 )	document.boton5.src="graficos/mapi6.gif"  
	if (num == 6 )	document.boton6.src="graficos/mapi7.gif"
	if (num == 7 )	document.boton7.src="graficos/mapi8.gif"  
	if (num == 8 )	document.boton8.src="graficos/mapi9.gif"  
	    
  } 


}

function pulsar(num) { 
if(navegador == 3 ){

	if (num == 0 )	document.boton0.src=boton[0].src
	if (num == 1 )	document.boton1.src=boton[1].src
	if (num == 2 )	document.boton2.src=boton[2].src
	if (num == 3 )	document.boton3.src=boton[3].src
	if (num == 4 )	document.boton4.src=boton[4].src
	if (num == 5 )	document.boton5.src=boton[5].src
       	if (num == 6 )	document.boton6.src=boton[6].src
	if (num == 7 )	document.boton7.src=boton[7].src
	if (num == 8 )	document.boton8.src=boton[8].src
	
}
}
//-->