

function Menuon(obj){
	if(document.getElementById){
	var el = document.getElementById(obj);
	var ar = document.getElementById("contenitore").getElementsByTagName("div");
		if(el.style.visibility != "visibile"){
			for (var i=0; i<ar.length; i++){
				if (ar[i].className=="menu_int")
				ar[i].style.visibility = "hidden";
			}
			el.style.visibility = "visible";
		}
	}
}

function Menuoff(obj){
	if(document.getElementById){
	var el = document.getElementById(obj);
	var ar = document.getElementById("contenitore").getElementsByTagName("div");
		if(el.style.visibility != "hidden"){
			for (var i=0; i<ar.length; i++){
				if (ar[i].className=="menu_int")
				ar[i].style.visibility = "hidden";
			}
			el.style.visibility = "hidden";
		}
	}
}



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>:: DAACM - 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,'resizable=yes,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
	


function ingrandimento2(foto,w,h,wfoto,hfoto)
	{
	
	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>:: DAACM - Ingrandimento Foto ::</TITLE>\n</HEAD>\n<CENTER><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0 BGCOLOR="#243F30">\n<IMG SRC="'+foto+'" BORDER=0 alt="Clicca per chiudere la finestra" NAME=imageTest" width="' + wfoto + '" height="' + hfoto + '"></CENTER>\n</BODY>\n</HTML>';
	popupImage = window.open('','_blank','top='+ph+',left='+pw+',width='+w+',height='+h+' ,toolbar=no, location=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes');
	
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
	


// Preload Immagini

function PreloadImmagini()

{ 

  var args = PreloadImmagini.arguments;

  document.imageArray = new Array(args.length);

  for(var i=0; i<args.length; i++)

  {

    document.imageArray[i] = new Image;

    document.imageArray[i].src = args[i];

  }

}








//carica le immagini del Menu









// Rollover Immagini



function switchImage(imgName, imgSrc) 

{

  if (document.images)

  {

    if (imgSrc != "none")

    {

      document.images[imgName].src = imgSrc;

    }

  }

}



//Pop up Generica



function pop_up(url,w,h,barre){

		var pw = Math.floor((screen.width-w)/2);
	    var ph = Math.floor((screen.height-h)/2);

			mywin=window.open(url,"popup","scrollbars="+barre+",top="+ph+",left="+pw+",width="+w+",height="+h);

			

		}

