/*
    Rutinas para evitar copiar texto de noticias.
*/
    document.oncontextmenu = function(){
		return false
	}
	if(document.layers) {
		window.captureevents(event.mousedown);
		window.onmousedown = function(e) {
			if(e.target==document)
			   return false;
		}
	} else {
		document.onmousedown = function(){return false}
	}
	function disableselect(e) {
		return false
	}
	function reenable(){
		return true
	}
	document.onselectstart=function(){return false}
	if (window.sidebar){
		document.onmousedown=disableselect
		document.onclick=reenable
	}

// -->