<!--
//   Javascript for music control on pages
//   on each page is this script if you want to add the music and controls put yes in the ( ) on the page itself
//   otherwise leave the no in the (  ) to keep the music from the page.

function musiccontrol(switch) {
if (switch == "yes") {
document.write('<p align="center"><br /><strong><font color="white">Music control:</font></strong><br />');
document.write('<embed src="http://www.kineticsmag.com/sound/heart_to_heart.mp3" width="160" height="20" align="center" autostart="true" loop="true" showtracker="false" showcontrols="true" showgotobar="false" showdisplay="false" showstatusbar="false" autosize="false">');
document.write('</embed></p>');
  }
else {
document.write('<p>&nbsp;</p>');
  }
}
-->
