document.oncontextmenu = function(){alert("Botón derecho deshabilitado. Disculpe las molestias.");return false} 
var opencat="";

//Que no copien texto
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
}

function hace(n) {
	var actual=new Date();
	var anioactual=actual.getFullYear();
	var dif=anioactual - n;
	if (dif==0){
		return("<span class='hace'> (Este a&ntilde;o)</span>");
		    }
	if (dif==1) {
		return("<span class='hace'> (El a&ntilde;o pasado)</span>");
		}
	if (dif==anioactual){
		return("<span class='hace'>");
		    }
	return("<span class='hace'> (Hace " + dif + " a&ntilde;os)</span>");
	}
