function radio_en()
{
var dagnaam = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday','Monday');
//get the date, the hour, minutes, and seconds
var the_date = new Date();
var the_weekday = the_date.getUTCDay();
var h = the_date.getUTCHours();
var d = the_date.getUTCDate();
var M = the_date.getUTCMonth() + 1;
var J = the_date.getUTCFullYear();
var dag = the_date.getDate();
var status = 'John N\'s Radio is online';
var tekst = new Array();
 tekst[0] = 'Jazz, blues and soul music';
 tekst[1] = 'German & Italian and World hits';
 tekst[2] = 'Celtic, Irish and Dutch music';
 tekst[3] = 'Country & Rock music and Oldies';
 tekst[4] = 'Caribbean and South American music';
 tekst[5] = 'music from the Netherlands and from Oversea';
 tekst[6] = 'Jukebox with World music';
 tekst[7] = 'jazz, blues and soul music';
//document.writeln('<p align="center">' + status + ' this ' + dagnaam[the_weekday] +' from 7 to 12 PM Universal Time (UT)<br>');
//document.writeln('with ' + tekst[the_weekday] + '!</p>');
}