<!--


document.writeln("<FORM NAME = \"News\">");
document.writeln("<input type=\"text\" size=\"112\" name=\"box1\">"); 
document.writeln("</FORM>");




document.News.box1.value = "This is the live MAR Status News Feed"; 
var pl = new Array()

pl[1] = "Hi to all who sent feedback to the station, keep listening to the stream and also next time we are on air."
pl[2] = "You can also send us a text at any time on 0750 446 4678 : see our TONS OF EXTRAS at bottom of page"
pl[3] = "2500 hits to website on 8th March 09 and 2021 hits on 22nd March 2009 - Thank You so so much. ."
pl[4] = "We are www.mar1386.com - You can also send us a text at any time on 0750 446 4678"
pl[5] = "Dont forget to listen on the stream this week to all our programs again, inc Mike Stand, Tony Hayes, SteveM, JackieF"
pl[6] = "You can also send us a text at any time on 0750 446 4678 : see TONS OF EXTRAS link at bottom of page"
pl[7] = "New additions are John Freeman, Dave Rodgers, Eric Monagham, and many many more names"
pl[8] = "You can also send us a text at any time on 0750 446 4678"
pl[9] = "MAR is also Roger D, Dave W, Jackie F, Tony Hayes, Steve M, Dave S, Gary P, Lee M, Mike Stand, PaulJ"
pl[10] = "Email the station now on  mar@rock.com or use the SHOUT/DEDICATION BOXES"
pl[11] = "Keep pressing the SEND A DEDICATION box as often as you can to send us any message you want."
pl[12] = "There is so so much more to hear and see by clicking our TONS OF EXTRAS button half way down."


function keepchecking()
{
document.News.box1.value = pl[x]; 
setTimeout("keepchecking()",5000) ; 
x = x + 1
if (x>12) { x = 1 }
}

var x = 1;
setTimeout("keepchecking()",5000);  



//-->
