function stopError()
{return true;}

function click() {
if (event.button==2)
  window.external.AddFavorite('http://cocoradio.com/','COCORADIO.COM - THE REGGAE CHANNEL');
}
document.onmousedown=click;


function copy(what) {
window.clipboardData.setData('Text',what.value);
}

function CocoChat() 
{ 
 var width=730; 
 var height=670; 
 var positionX=50; 
 var positionY=50; 
 var url='/chat/'; 
 pop=window.open('','LiveChat','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,fullscreen=0,width='+width+',height='+height+',top=10000,left=10000'); 
 pop.resizeTo(width,height); 
 pop.moveTo(positionX,positionY); 
 pop.location=url; 
 }

function flashPlayer() 
{ 
 var width=800; 
 var height=800; 
 var positionX=50; 
 var positionY=50; 
 var url='http://cocoradio.com/main/?wmx=no&channel=01&mpg=hi'; 
 pop=window.open('','FlashPlayer','toolbar=0,location=1,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,fullscreen=1,width='+width+',height='+height+',top=10000,left=10000'); 
 pop.resizeTo(width,height); 
 pop.moveTo(positionX,positionY); 
 pop.location=url; 
 }

onerror = stopError;
