function ingrandimento(foto,w,h)
	{
	
	var pw = Math.floor((screen.width-w)/2);
	var ph = Math.floor((screen.height-h)/2);
	
	i1 = new Image;
	i1.src = foto;
	html = '<HTML>\n<HEAD>\n<TITLE>:: Airloft.it - Ingrandimento Foto ::</TITLE>\n</HEAD>\n<CENTER><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0 BGCOLOR="#243F30">\n<A href="javascript:self.close();"><IMG SRC="'+foto+'" BORDER=0 alt="Clicca per chiudere la finestra" NAME=imageTest" width="' + w + '" height="' + h + '"></A></CENTER>\n</BODY>\n</HTML>';
	popupImage = window.open('','_blank',"top="+ph+",left="+pw+",width="+w+",height="+h,'toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
	
	//per i thumbnail
	function ingrandimento1(foto,w,h)
	{
	
	var pw = Math.floor((screen.width-w)/2);
	var ph = Math.floor((screen.height-h)/2);
	
	i1 = new Image;
	i1.src = foto;
	html = '<HTML>\n<HEAD>\n<TITLE>:: Airloft.it - Ingrandimento Foto ::</TITLE>\n</HEAD>\n<CENTER><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0 BGCOLOR="#243F30">\n<A href="javascript:self.close();"><IMG SRC="'+foto+'" BORDER=0 alt="Clicca per chiudere la finestra" NAME=imageTest"></A></CENTER>\n</BODY>\n</HTML>';
	popupImage = window.open('','_blank',"top="+ph+",left="+pw+",width="+w+",height="+h+",scrollbars=yes, resizable=yes");
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};






function SwitchMenuon(obj){
	if(document.getElementById){
	var el = document.getElementById(obj);
	var ar = document.getElementById("principale").getElementsByTagName("div");
		if(el.style.visibility != "visible"){
			for (var i=0; i<ar.length; i++){
				if (ar[i].className=="nascostoadmin")
				ar[i].style.visibility = "hidden";
			}
			el.style.visibility = "visible";
		}
		if(el.style.position != "relative"){
			for (var i=0; i<ar.length; i++){
				if (ar[i].className=="nascostoadmin")
				ar[i].style.position = "absolute";
			}
			el.style.position = "relative";
		}
	}
}

function SwitchMenuoff(obj){
	if(document.getElementById){
	var el = document.getElementById(obj);
	var ar = document.getElementById("principale").getElementsByTagName("div");
		if(el.style.visibility != "hidden"){
			for (var i=0; i<ar.length; i++){
				if (ar[i].className=="nascostoadmin")
				ar[i].style.visibility = "hidden";
			}
			el.style.visibility = "hidden";
		}
		
		if(el.style.position != "absolute"){
			for (var i=0; i<ar.length; i++){
				if (ar[i].className=="nascostoadmin")
				ar[i].style.position = "absolute";
			}
			el.style.position = "absolute";
		}
	}
}
