<!-- Begin
function rclick(ie) { var rcmessage = "Dick Becker's Radio LIVE ... Listen to radio while you browse!";
if (navigator.appName == 'Netscape' && ie.which == 3) {
alert(rcmessage);
return false;
}
else
if (navigator.appName == 'Microsoft Internet Explorer' &&
event.button==2) {
alert(rcmessage);
return false;
}
return true;
}
document.onmousedown = rclick;
// End -->
