// JavaScript Document
function OcultarObra(obj)
{
	var img_ampliacion = document.getElementById("ampliacion");
	img_ampliacion.src = "";
	img_ampliacion.alt = obj.alt;	
	img_ampliacion.style.visibility = 'hidden';
//	img_ampliacion.style.display = 'none';

	var div_obra = document.getElementById("imagen");
	div_obra.style.visibility = 'hidden';
//	div_obra.style.display = 'none';
	
	var div_ampliacion = document.getElementById("div_ampliacion");
	div_ampliacion.style.visibility = 'hidden';
//	div_ampliacion.style.display = 'none';	
}

function AmpliarObra(obj)
{
	var img_ampliacion = document.getElementById("ampliacion");
	img_ampliacion.src = "Ampliacion/" + obj.id  + ".jpg",obj.id,"";
	img_ampliacion.alt = obj.alt;	
	

	var des_obra = document.getElementById("DescripcionObra");
	des_obra.innerHTML = obj.alt;
			
	var div_obra = document.getElementById("imagen");
    div_obra.style.height='2000px';//necesario para Explorer 
	div_obra.style.display = 'block';	
	div_obra.style.opacity = '0.75';
    div_obra.style.MozOpacity = '0.75';
    div_obra.style.KhtmlOpacity = '0.75';
    div_obra.style.filter = 'alpha(opacity=75)';
    div_obra.style.zoom=1;//necesario para Explorer 
			
	var div_ampliacion = document.getElementById("div_ampliacion");
	div_ampliacion.style.width = div_obra.style.width;
	div_ampliacion.style.display = 'block';				
	div_ampliacion.style.aling = 'center';									
	div_ampliacion.style.text_aling = 'center';				
	
	img_ampliacion.style.visibility = 'visible';
	
	div_ampliacion.style.visibility = 'visible';
	
	div_obra.style.visibility = 'visible';				
}

function mailto(nombre, sitio){
    document.write('<a href="mailto:' + nombre + '@' + sitio + '" class="enlacenav">');
    document.write('Contacto' + '</a>');
}
function mailtoImg(nombre, sitio, ruta, alt){
    document.write('<a href="mailto:' + nombre + '@' + sitio + '">');
    document.write('<img src="' + ruta +'" alt="' + alt + '" border="0" />' + '</a>');
}


function MostrarObra(obj)
{
	img_obra = document.getElementById("obra");
	img_obra.src = "Obras//" + obj.id + ".jpg";
	img_obra.alt = obj.alt;
}

function AbrirObra(obj)
{
	open("Ampliacion/" + obj.alt + ".jpg",obj.alt,"");
}

function setOpacity(obj,value){
 	obj.style.opacity = value;
    obj.style.MozOpacity = value;
    obj.style.KhtmlOpacity = value;
    obj.style.filter = 'alpha(opacity=' + value*100 + ')';
    obj.style.zoom=1;//necesario para Explorer 
}
