// JavaScript Document

function Play(set)
{
   if(set == 1)
   {
      document.getElementById("music").innerHTML =
'<img src="img/on.gif" alt="on" onclick="Play(0)" /><embed autostart="true" loop="true" src="include/balada.mp3" width="0" height="0"></embed>';
   }
   else
   {
      document.getElementById("music").innerHTML = 
'<img src="img/off.gif" alt="off" onclick="Play(1)" /><embed autostart="false" loop="true" src="include/balada.mp3" width="0" height="0"></embed>';
   }
}
