

<!-- Begin
function detenerError(){
return true
}
window.onerror=detenerError
// End -->

<!-- Begin
//Texto en barra de estado
 var cuenta=0
 var texto=" SITUACION - Rock Alternativo desde la Llajta Kh'ochala " //Aqui el mensaje
 function scrolltexto () {
 window.status=texto.substring (cuenta,texto.length)+  texto.substring(0,cuenta)
 if (cuenta <texto.length){ cuenta 
 }else{
 cuenta=0
 }
 setTimeout("scrolltexto()",80)
 }
 scrolltexto ()
// End -->

<!-- Begin
document.oncontextmenu = function(){return false}
// End -->


<!-- Begin
function clickIE() {
if (document.all) {
return false;
}
} 
function clickNS(e) {
if (document.layers||(document.getElementById&&!document.all)) { 
if (e.which==2||e.which==3) {
return false;
}
}
} 
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS;
} 
else{
document.onmouseup=clickNS;
document.oncontextmenu=clickIE;
} 
document.oncontextmenu=new Function("return false") 
// End -->


/*<!-- Begin
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 }
// End -->*/