﻿var sng="play";

function Play_Song()
{

 document.getElementById ('songpanel').innerHTML="<EMBED SRC='./images/FULL CUT.mp3' HIDDEN=true AUTOSTART=true> " +
        " <NOEMBED><BGSOUND SRC='./images/FULL CUT.mp3'></NOEMBED>";                
        document.getElementById("audio_sign").innerHTML=
        '<img src="./images/short_mute.jpg" border="0"  height="12" onclick="javascript:Song()" />';
alert('Please Wait while playing Sahyogi Theme Song.');        
}
function Stop_Song()
{
    alert('Sahyogi Theme Song is now Stopping');
    document.getElementById ('songpanel').innerHTML=" ";
    document.getElementById("audio_sign").innerHTML=
        '<img src="./images/short_audio.jpg" border="0"  height="12" onclick="javascript:Song()" />';
}
function Song()
{
   if (sng=="play")
   {
    sng="stop";
    Play_Song();
   }
   else
   {
    sng="play";
    Stop_Song();
   }
}