<!-- Begin Quote of the Day (was Daily Fortune)
// Compiled by Brett McCarron 
// layout and coding copyright (C) 1996-2003 The Blame Productions
// 10-06-03 New format

var howMany = 8
// this is one less than the actual number

var fortune = new Array(howMany+1)
fortune[0] = "\"I really enjoyed your peaceful, beautiful performance.  I am a bereavement coordinator; your 'grief and resolution' was wonderful!\" <br><i>- Carol Johnson Davis, Hospice of the Valley, San Jose, CA</i>" 
fortune[1] = "\"Very healing/suggestive of dream states. Thank you.\" <br><i>-  Jan Pitcher, Los Gatos, CA</i>" 
fortune[2] = "\".\.\.beautiful synergy of music/dance spirit!\" <br><i>- Amy  French, Redwood City, CA</i>"
fortune[3] = "\"Beautiful and relaxing - Thanks\" <br><i>- Matt and P.J. Hoover, Night Flight Charters, Naples, FL</i>"
fortune[4] = "\"Loved it!  Very moved.  Good luck!\" <br><i>- Patsy Valentine, Naples, FL</i>"
fortune[5] = "\".\.\.your music sooths my sad soul.\" <br><i>- Deb Pierce, Stevens Point, WI</i>"
fortune[6] = "\"The CD is a great accomplishment.  With two little ones underfoot, your calming compositions are most welcomed.\"<br><i>- John and Susan M., New York, NY</i>"
fortune[7] = "\"Janie has opened a private door to her heart and allowed us all a look inside.\" <br>- Valerie Lawe, Celestial Reasonings</i>"
fortune[8] = "\"a gift from janie is a wonderful gift ...a tribute to humankind, and all that is good in our lives!\" <br><i>- Richard Fuller, Senior Editor, Metaphysical Reviews</i>"
fortune[9] = "\"This album is a precious gift, which I share with my listeners. Thanks for your wonderful music.\" <br><i>- Marius-Christian Burcea, FUN Radio, Bucharest, Romania</i>"

function rndnumber()
{
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
todayfor = rndnumber()
fort = fortune[todayfor]
//document.write("<tr><td colspan='3' align='center'><br>");
document.write("<span class='quote'>");
// document.write("<br><font size=1><b>");
// document.write("Who said that\?</b></font><br>");
document.write(fort)
document.write("</span>");

// End -->