
<!--
BotonPresentacionON=new Image()
BotonPresentacionON.src="../Imagenes/Logotipo.gif"
BotonPresentacionOFF=new Image()
BotonPresentacionOFF.src="../Imagenes/Logotipo.gif"


//Modificar el "alt" de la descripción de los botones

function CambioBoton(imagename,objectsrc)
{
  if (document.images)
   {
     document.images[imagename].src=eval(objectsrc+".src")
   }
}

function CambioTD(NombreObjeto,PropiedadObjeto)
{
 //alert("Cambio de TD" + NombreObjeto + " " + PropiedadObjeto)
 if (document.getElementById(NombreObjeto))
   {
   //    alert("Cambio de TD: existe");
   document.getElementById(NombreObjeto).background = PropiedadObjeto;   
   }
  else
    {
    alert("Cambio de TD: No existe");
    }
}

function TerminarCarga()
{
}


function MusicaMaestro()
{
var Cancion="../Audio/Mozart.mid";
var x=Math.random() % 8;
if( x<=2 )
   Cancion="../Audio/Guitarra.mid";
else if  ( x<=4 )
  Cancion="../Audio/Mozart.mid";
else if  ( x<=6 )
   Cancion="../Audio/Guitarra.mid";
else if  ( x<=8 )
  Cancion="../Audio/Mozart.mid";
else
   Cancion="../Audio/Mozart.mid";   
//alert(Cancion);
if(navigator.appName=="Microsoft Internet Explorer")
   document.write('<bgsound src=' + ' " ' + Cancion +  ' " >' );
else
   document.write('<embed src=' + ' " ' + Cancion +  ' " '+ 'hidden="true" border="0" width="20" height="20" autostart="true" >' );
}


//  MusicaMaestro();
// -->

