<!--This is the script used to open an alert that plays a random sound. The line that starts with var ranNum creates a random number from  StartAudioNum = 1 to LastAudioNum = 6.  It loads the audio into an inviible frame established in the frameset command on index.  The two ending statements force the embeded audio to be removed, and close the invisible frame.  If you don't use these, the user will hear the sound when refreshing the page.  In particular, if close isn't used with firefox, the firefox brower will continue to appear to load.  The close, is like hitting the stop button-->


function LogoClick(){
var StartAudioNum = 1;
var LastAudioNum = 13;
var ranNum = Math.floor(Math.random()*(LastAudioNum-StartAudioNum))+StartAudioNum;
window.parent.invisible.document.write('<embed src="/audio/logoaudio/logoclick'+ranNum+'.mp3"  height=10 width=30 autostart=true  loop=false>');
window.parent.invisible.document.close();
alert('Quit clicking me, I don\'t do anything, so go back to reading!');
window.parent.invisible.document.open();
window.parent.invisible.document.close();
}

<!--This ends the script-->
