function FIND(item) {
	if( window.mmIsOpera ) return(document.getElementById(item));
	if (document.all) return(document.all[item]);
	if (document.getElementById) return(document.getElementById(item));
	return(false);
}

var music=FIND("music");

function playthemusic(num) {
document.embeds[0].src="../music/"+num+".mp3";
document.embeds[0].play();
}

function stopthemusic() {
document.embeds[0].stop();
}
