/* This Javascript outputs what show is 
currently on air at KSUA 91.5 FM, College */
/* It was generated from the current schedule 
schedule page schedulefm.html, */
/* by the script mk_js.pl [c.p.price, uaf, 27 
sept 2003; all rights reserved] */
 
/* First, we need to know the current day and time */
Today = new Date();
 
/* Then adjust for Alaska Time */
GMTString = Today.toGMTString();
/* now on daylight savings time */
Local = new Date(Date.parse(GMTString) - (9*3600000));
/* not now on daylight savings time */
Local = new Date(Date.parse(GMTString) - (8*3600000));
 
/* Extract the hours and minutes into 24-hour format (hhmm) */
LocalTime = Local.getUTCHours() * 100 + Local.getUTCMinutes();
 
/* Extract the day of the week */
LocalDay = Local.getUTCDay();

/* TV header */
document.write("<p><strong>TV:</strong> ");
document.write("<strong>Now broadcasting!</strong><br />");
/*
document.write("Tune in on 9/2/2007!</p>");
*/

/* tailer */
