/********************************************************************************************************** 
 ***************** JS - Fabio Lucattini ******************************************************************
 **********************************************************************************************************/
var divLoading = "";
var divLoad = "";

var winW = 0, winH = 700;
winW = screen.width -5;
winH = screen.height -150;

function chiudiIMGimmagini(){
	if(document.getElementById("loading") && document.getElementById("load")){
		document.getElementsByTagName("body")[0].removeChild(document.getElementById("loading"));
		document.getElementsByTagName("body")[0].removeChild(document.getElementById("load"));
	}
}

function caricaImg(nome){
	divLoading = document.createElement('div');	
	document.getElementsByTagName("body")[0].appendChild(divLoading);
	divLoading.setAttribute('id',"loading");	
	/**	Attivare la chiusura sul click dell'immagine
	if( nome_browser == "Microsoft Internet Explorer" ){
		divLoading.onclick = chiudiIMG;
	}else{
		divLoading.setAttribute("onClick","chiudiIMG();");
	}
	*/ 
	divLoad = document.createElement('div'); 
	document.getElementsByTagName("body")[0].appendChild(divLoad);
	divLoad.setAttribute('id',"load");
	document.getElementById("load").style.marginTop="0px";
	divLoad.style.height = (winH+100)+"px";
	divLoad.style.width = winW+"px";
	/**	Attivare la chiusura sul click del div di sfondo
	if( nome_browser == "Microsoft Internet Explorer" ){
		divLoad.onclick = chiudiIMG;
	}else{
		divLoad.setAttribute("onClick","chiudiIMG();");
	}
	*/ 
	divLoading.innerHTML = '<center><img id="imgAPERTA" src="script/visualizzaImmagini2.php?n='+nome+'&h=600" ><br><br><a onclick="chiudiIMGimmagini();" style="margin-right:20px;" class="chiudiIMG">CHIUDI</a><a target="_blank" href="script/stampa.php?n='+nome+'" class="chiudiIMG">STAMPA</a></center>';	

}