<SCRIPT LANGUAGE="Javascript"><!--
// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************
function initArray() {
this.length = initArray.arguments.length;
for (var i = 0; i < this.length; i++)
this[i+1] = initArray.arguments;
}
var weekDayArray = new;
initArray("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var today = new Date();
var day = weekDayArray[today.getDay()+1];
if (day == "Monday") window.location = "Monday.htm"
if (day == "Tuesday") window.location = "Tuesday.htm"
if (day == "Wednesday") window.location = "Wednesday.htm"
if (day == "Thursday") window.location = "Thursday.htm"
if (day == "Friday") window.location = "Friday.htm"
if (day == "Saturday") window.location = "Saturday.htm"
if (day == "Sunday") window.location = "Sunday.htm"
//-->
</SCRIPT>