function check(){
preloadImages();
var status = parent.frames["music"].status;
var theid = 'music';


if(status=="nomusic"){
  document.getElementById(theid).innerHTML='<embed src="nomusic.swf" autostart="true" height="10px" width="20px" loop="true"></embed>';}
  
if(status=="music"){
  document.getElementById(theid).innerHTML='<embed src="musicdisplay.swf" autostart="true" height="10px" width="20px" loop="true"></embed>';}
}

function music(theid, status)
{
if(status=="nomusic"){window.name=status;
  document.getElementById(theid).innerHTML='<embed src="nomusic.swf" autostart="true" height="10px" width="20px" loop="true"></embed>';}
  
if(status=="music"){
  document.getElementById(theid).innerHTML='<embed src="musicdisplay.swf" autostart="true" height="10px" width="20px" loop="true"></embed>';}
}



