regarding the post above with this code:
To have a music on my blog, I used below code:
<!– Begin Music Section –>
<script language=”javascript”>
function BeginMusic(){
if(document.MusicForm.snd.value == ‘Music on’)
{
document.all.music.src=’https://www.sharemation.com/parsa1976/Zebigniew%20Preisner%20-%20Dekalog%20VIII%20-%203.WMA’;
document.MusicForm.snd.value = ‘Music off’;
}
else
{
document.all.music.src=”;
document.MusicForm.snd.value = ‘Music on’;
}
}
</script>
<center><form name=”MusicForm”>
<input name=”snd” type=”button” value=”Music on” OnClick=”BeginMusic()”>
</form></center>
<bgsound id=music loop=-1 autostart=”true” >
<!– End Music Section –>
where do you fill in the information for the song? please help, I am a little clueless.