

function appari(elemento){
altezza=document.body.scrollHeight;
var elem = document.getElementById(elemento);

	elem.style.position="absolute";
	$(elem).fadeIn(500)
	elem.style.zIndex="500";
        margine_sx=0-(elem.clientWidth/2);
        margine_alto=0-(elem.clientHeight/2);
        elem.style.left="50%";
        elem.style.marginLeft=margine_sx;
if (navigator.appName == "Netscape"){
	posiy=window.pageYOffset+(window.innerHeight-elem.clientHeight)/2;
	}else{//se explorer
	posiy=document.documentElement.scrollTop+(document.body.clientHeight-elem.clientHeight)/2;
	}
if(posiy<10){
posiy=10;
}
	elem.style.top=posiy+"px";
altezza=document.body.scrollHeight;
	
var elem = document.getElementById("sfondo");
        elem.style.position="absolute";
	elem.style.zIndex="350";
	elem.style.backgroundColor="#000000";
	$(elem).fadeTo(300,0.7);
	elem.style.top=0;
	elem.style.left=0;
elem.style.width="100%";

if (navigator.appName == "Netscape"){
   if(altezza < window.innerHeight){
   altezza=window.innerHeight
   }

	elem.style.height = altezza + "px";

}else{///se explorer
   if(altezza<document.body.clientHeight){
   altezza=document.body.clientHeight
   }
	elem.style.height = altezza + "px";
	}
}


function chiudi(elemento){
	var elem = document.getElementById(elemento);
	$(elem).fadeOut(100,function(){$('#sfondo').fadeOut(100)})
}




function apri_zoom(dominio,foto,categoria,rif) {
	var elem=document.getElementById("zoom");
//elem.innerHTML="<table bgcolor='#ffffff' cellspacing=0 cellpadding=0 height=100% align=center><tr><td align=right style='padding-bottom:5px;padding-top:5px;'><a href=javascript:chiudi('zoom')>[x]chiudi</a></td></tr><tr><td valign=middle><br><a href='../brochure.pdf' target='_blank' title='leggi tutte le offerte (pdf)'><img src='/images/"+foto+"' border=0></a></td></tr><tr><td align=right style='padding-bottom:5px;padding-top:5px;'><a href=javascript:chiudi('zoom')>[x]chiudi</a></td></tr></table>"; ///DA RIMETTERE SE COLLEGATE OCCASIONI
elem.innerHTML="<table bgcolor='#ffffff' cellspacing=0 cellpadding=0 height=100% align=center><tr><td align=right style='padding-bottom:5px;padding-top:5px;'><a href=javascript:chiudi('zoom')>[x]chiudi</a></td></tr><tr><td valign=middle><br><a href='../brochure.pdf' target='_blank'><img src='/images/"+foto+"' border=0></a></td></tr><tr><td align=right style='padding-bottom:5px;padding-top:5px;'><a href=javascript:chiudi('zoom')>[x]chiudi</a></td></tr></table>";


var pic_real_width;
var pic_real_height;

$('#zoom img').load(function() {
    // Remove attributes in case img-element has set width and height
    $(this).removeAttr("width")
           .removeAttr("height")
           .css({ width: "", height: "" }); // Remove css dimensions as well

    pic_real_width = this.width;
    pic_real_height = this.height;
	appari("zoom");
});


}

function chiudi_zoom(){
chiudi("zoom")	
	
}




function appari_mappa(){
apri_zoom('','ad.jpg','','')


}


