function disableselect(e) 
{ 
return false 
} 
function reEnable() 
{ 
return true 
} 
//if IE4+ 
document.onselectstart=new Function ("return false") 
//if NS6 
if (window.sidebar) 
{ 
document.onmousedown=disableselect 
document.onclick=reEnable 
} 
<!-- Adaptado por Tk: Compatible con IE y NS -->

function derecha(e) {
if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)){
alert('Es necesario acceder desde Internet Explorer / It is necessary to accede from Internet Explorer... BUBYTV.com')
return false;
}

else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2)){
alert('Es necesario acceder desde Internet Explorer / It is necessary to accede from Internet Explorer... BUBYTV.com')
}
}
document.onmousedown=derecha

puchtit="  .[ www.BUBYTV.com ].  "; 
letrero1=""; 
letrero2="";ultimo1=letrero1.length-1; 
ultimo2=letrero2.length-1; 
tiempo=setTimeout("scroll()",70); 
function scroll() 
{ 
   aux1=letrero1.charAt(ultimo1-1); 
   letrero1=aux1+letrero1.substring(0,ultimo1-1); 
   aux2=letrero2.charAt(0); 
   letrero2=letrero2.substring(1,ultimo2+1)+aux2; 
   window.status="(" + letrero1 + puchtit + letrero2 + ")"; 
   tiempo=setTimeout("scroll()",70); 
   return true; 
}