function fNull() {}



// ANULAR EL CLICK DERECHO
// -----------------------
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")


// CARGAR NUEVA FOTO
var xA;
var yA;
function cargaFOT(x,y)
{
	window.foto.src = "img/FOT."+ x +"."+ y +".jpg";
	xA = x;
	yA = y;
}

function cargaFOTBig()
{
	OpenIT('img/fot.'+ xA +'.'+ yA +'.1.jpg',650,450,'foto');
}


// CARGA EN VENTANA FLOTANTE
// -------------------------
function OpenIT(fich,w,h,name) {
	VF = window.open(fich,name,'width='+ w +',height='+ h +',status=yes,toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no')
	window.setTimeout('window.VF.focus()',1000)
}

