<!--
/* Simple Random Midi Script, designed by jimpa.
It will work for both Netscape and MSIE.
You are free to use this script and change it how you like.  
Simply replace the midi file names with your own, you can add
or subtract as many midi files as you want.  Finally change the
%15 to %(# of midi files). */

var1="At_Calvary.mid"
var2="Bringing_In_The_Sheaves.mid"
var3="He_Lives.mid"
var4="Heavenly_Sunlight.mid"
var5="Higher_Ground.mid"
var6="HoldTheFort.mid"
var7="I_Am_Resolved.mid"
var8="Im_Saved_Saved_Saved.mid"
var9="JustAsIAm.mid"
var10="Love_Lifted_Me.mid"
var11="RescueThePerishing.mid"
var12="The_Bible_Stands.mid"
var13="Trust_And_Obey.mid"
var14="Standing_On_The_Promises.mid"
var15="When_I_See_The_Blood.mid"
var16="TellTheStory.mid"
var17="Saviors_Love.mid"
var18="Showers_Of_Blessings.mid"
var19="Washed_In_The_Blood_Of_The_Lamb.mid"
var20="Only_Trust_Him.mid"

now=new Date()
num=(now.getSeconds() )%20
num=num+1
quot="'"   //this is double quote, single quote, double quote which produces '

if (navigator.appName=="Microsoft Internet Explorer")
document.write("<bgsound src=" + quot + "audio/" + eval("var"+num) + quot + " loop='infinite'>")
else 
document.write("<embed src=" + quot + "audio/" + eval("var"+num) + quot + " hidden='true' border='0' width='20' height='20' autostart='true' loop='true'>")

//-->