<!--
function obtenerIfFlash(id) {
  if (window.document[id])
    return window.document[id];
  if (navigator.appName.indexOf("Microsoft Internet")==-1) {
    if (document.embeds && document.embeds[id])
      return document.embeds[id]; 
  }
  else
   return document.getElementById(id);
}

function enviarInfoAFlash(valor) {
	var flashMovie=obtenerIfFlash("miFlash");
	var parametros="?pista="+valor+".mp3";
	
	flashMovie.LoadMovie(0, "flash/locucion.swf" + parametros);
}
//-->
