<!--
//   Javascript for music control on pages
//   on each page is this script if you want to add the music and controls put yes and name in the ( ) on the page itself
//   otherwise leave the no and none in the (  ) to keep the music from the page.
function musiccontrol(soundon,artist) {
if(soundon == "yes") {
 if(artist == "aleya") {
document.write('<p class="musiccrtls">Music control:<br/>');
document.write('<embed src="http://www.kineticsmag.com/sound/aleya.m4a" width="160" height="20" align="center" autostart="true" loop="true" '); document.write('showtracker="false" showcontrols="true" showgotobar="false" showdisplay="false" showstatusbar="false" autosize="false">');
document.write('</embed></p>');
   } 
 }
else {
document.write('<p>&nbsp;</p>');
 }
}
-->
