var mensaje=" CopyRight RutaCultural ";

//if IE4+ 
document.oncontextmenu=copion;
document.onkeydown=tipeo;

document.onselectstart=new Function ("return false");
document.ondragstart=new Function ("return false");
document.onsave=new Function ("return false");
//if NS6 
if (window.sidebar) 
{ 
   document.onmousedown=disableselect 
   document.onclick=reEnable 
} 

function copion(e) {
	//el=document.elementFromPoint(event.clientX,event.clientY);
	//window.status=el.tagName+' '+el.type;
	//alert("&copy; CopyRight RutaCultural &reg;");
	alert(mensaje);
	return false;
}
function tipeo(e) {
	tecla=event.keyCode;
	ctrl=event.ctrlKey;
	/*  alert(event.button+' , '+event.keyCode+event.ctrlKey);	
	c=67, e=69, 16 = Shift,	17 = Ctrl, 18 = Alt 	*/
	return true;
	if((tecla==67 && ctrl==true ) || (tecla==69 && ctrl==true ) ) {
		//document.body.disabled=true;
		alert(mensaje);
		return false;
	} else { 
		return true;
	};
}


function disableselect(e) 
{ 
   return false 
} 
function reEnable() 
{ 
   return true 
} 

