function ShowMusic() {
  if (document.cookie.indexOf("music=off")< 0) {
    document.write ('<embed src="/idontknw.mid" autostart="TRUE" loop="FALSE"  width="142" hidden="TRUE"  align="CENTER"  height="30">');
    document.write ('<br><a href="javascript:ChangeMusic(\'off\');" class="menu">Turn Music Off<br><img src="/images/tspeak1.gif" alt="Speaker" width="32" height="36" border="0"></a>');
  }
  else {
    document.write ('<a href="javascript:ChangeMusic(\'on\');" class="menu">Turn Music On<br><img src="/images/tspeak1.gif" alt="Speaker" width="32" height="36" border="0"></a>');
  }
}
function  ChangeMusic(setMusic) {
  exp = new Date();
  exp = exp + (5*356*24* 60*60*1000);
  document.cookie="music=" + setMusic + ";expires=" + exp + ";domain=.timesharestogo.com;path=/";
  var CurrentFrame = self.location.href;
  self.location.href = CurrentFrame;
}


