//Anular el click dret del mouse o la tecla ekivalent del teclat

var txt="Els Berros de la Cort.  "
	+ "Música d'arrel medieval, occitana i celta.  "
	+ "Benvingut/da al nostre mon.                    ";
function scroll()
{
	window.status = txt;
	txt = txt.substring(1,txt.length) + txt.charAt(0);
	window.setTimeout("scroll()",100);
}

//var winName="Berros" 
function Abrir_Ventana(theURL,w,h,winName) { 
	var windowprops ="top=0,left=0,toolbar=no,location=no,status=no, menubar=no,scrollbars=no, resizable=no,width=" + w + ",height=" + h;
	window.open(theURL,winName,windowprops); 
} 
