Javascript source

This javascript will display a different midi every day of the week. There is a default midi selected for those using a browser that doesn't support javascript (or who surf with javascript turned off). The attributes I've used will give you a console like that above the menu and includes the song title below it. You can place this javascript anywhere you want, as long as it it within the opening and closing BODY tags and you don't insert anything within the script!

See how it's used       Grab the source

See more javascripts
<SCRIPT>
<!-- start hiding
// Written by:
//   C. Schaar  aka sleepy
//   http://www.geocities.com/Heartland/Hollow/1000/

var Day_of_Week = new Date( )
Day = Day_of_Week.getDay( )

if (Day==0)
{
document.write("<EMBED SRC='song01.mid' AUTOSTART='true' LOOP='true' WIDTH=144 HEIGHT=60><BR>")
document.write("<I>Against All Odds</I>")
}

else if (Day==1)
{
document.write("<EMBED SRC='song02.mid' AUTOSTART='true' LOOP='true' WIDTH=144 HEIGHT=60><BR>")
document.write("<I>Long Distance Runaround</I>")
}

else if (Day==2)
{
document.write("<EMBED SRC='song03.mid' AUTOSTART='true' LOOP='true' WIDTH=144 HEIGHT=60><BR>")
document.write("<I>Walk Of Life</I>")
}

else if (Day==3)
{
document.write("<EMBED SRC='song04.mid' AUTOSTART='true' LOOP='true' WIDTH=144 HEIGHT=60><BR>")
document.write("<I>Waiting For A Girl Like You</I>")
}

else if (Day==4)
{
document.write("<EMBED SRC='song05.mid' AUTOSTART='true' LOOP='true' WIDTH=144 HEIGHT=60><BR>")
document.write("<I>A Farewell To Kings</I>")
}

else if (Day==5)
{
document.write("<EMBED SRC='song06.mid' AUTOSTART='true' LOOP='true' WIDTH=144 HEIGHT=60><BR>")
document.write("<I>For My Lady</I>")
}

else
{
document.write("<EMBED SRC='song07.mid' AUTOSTART='true' LOOP='true' WIDTH=144 HEIGHT=60><BR>")
document.write("<I>You Can&#39;t Always Get What You Want</I>")
}
// stop hiding -->
</SCRIPT>


<!-- provide alternative for javascript disabled browsers -->
<NOSCRIPT>
     <EMBED SRC="song00.mid" AUTOSTART="true" LOOP="true" WIDTH=144 HEIGHT=60>
     <BR><I>Longer</I>
</NOSCRIPT>





Copyright ©1997-2001  Charlene C. Schaar
All rights reserved.

Hosted by www.Geocities.ws

1