
function contactar(){
    (document.getElementById("marco")).src="contactar.html";
}

function mostrar(nombreCapa){
    (document.getElementById(nombreCapa)).style.visibility="visible";
}

function ocultar(nombreCapa){
    (document.getElementById(nombreCapa)).style.visibility="hidden";
}

function abreVentana(nombreVentana){
    var pag=nombreVentana+'.html';
    window.open(pag,"nueva","toolbar=no,directories=no,menubar=no,width=850,height=850,resizable=no,scrollbars=yes,status=no");
}
function abreImagen(nombreVentana){
    var pag=nombreVentana+'.html';
    window.open(pag,"nueva","toolbar=no,directories=no,menubar=no,width=450,height=700,resizable=no,scrollbars=yes,status=no");
}
function abreEnlace(enlace){
    window.open(enlace);
}

function privacidad(){
    window.open("privacidad.html","privacidad","toolbar=no,directories=no,menubar=no,width=420,height=550,resizable=no,scrollbars=no,status=no");
}
function foto(ruta){
	ruta=ruta.replace("miniaturas", "fotos");
	ruta=ruta.replace(".gif", ".jpg");
	var arr = document.body.childNodes;
	for(i=0;i<arr.length;i++){
		var elemento=document.body.childNodes[i];
		if (elemento.nodeType==1) elemento.style.display='none';
	}
	var cont=document.getElementById('contenedor');
	var foto=document.getElementById('capaFoto');
	cont.style.display='block';
	foto.innerHTML='<div style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 16px; color: #646464;">Click on the image to go back to the gallery</div><br><img src="'+ruta+'" alt="'+ruta+'" style="border:1px solid black;">';
	foto.style.display='block';
}
function recuperaOrig(){
	var arr = document.body.childNodes;
	for(i=0;i<arr.length;i++){
		var elemento=document.body.childNodes[i];
		if (elemento.nodeType==1) elemento.style.display='block';
	}
	document.getElementById('contenedor').style.display='none';
	var loc=""+document.location;
	var n=loc.indexOf('#');
	if (n==-1) loc+='#fotos';
	document.location=loc;
	//document.getElementById('capaFoto').style.display='none';
}
