Background Music (MIDI format)
This script will randomly play a music file from a list you provide.
Instructions:
1: Copy and paste the following script in the HEAD section of your page:
Select all...
<script language="javascript"> //ENTER YOUR FILE NAMES BELOW. DON'T FORGET THE QUOTES AROUND THE FILE NAMES. var midinames=[ 'mk.mid' , 'halloween.mid' ]; var srcurl=midinames[(Math.floor(Math.random()*midinames.length))]; if(document.layers)document.write('
'); else if(document.all)document.write('
'); </script>
2: Edit the list of songs. Don't forget to upload the midi files.