/*
© Copyright 2000 Atienza.cjb.net. Archivo status.js
Poner en <head> <script src="funciones.js"></script>
*/
//Función: cambia el texto de la barra de estado por defecto
window.defaultStatus="Casa Rural Las Palomas - Romanillos de Atienza (Guadalajara)";

//Abre fotografias con pie en imagenes.htm
function cargafotos(foto,pie){
	muestrafoto.src = 'fotografias/cargando.gif';
	muestrafoto.src = 'fotografias/' + foto;
	}

//Abre ventana con una nueva web	
function abrir(url){
		window.open(url, "enlaces", "toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,top=10,left=10,width=800,height=600")
	}
	
//No funciona el boton derecho del raton	
function noderecho(){	
var message="";
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);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")
}