var text = " Welcome to Freeradio 87.550 Fm ";
var a;
function flash(){
if (a == true){
window.status=text;
a=false;
}  
else{
window.status=" ";
a=true;
}
}
setInterval("flash()",1000);
// -->

