	function ajaxMOOload(url) {
		var ajax = new Ajax(url, { 
		update: $('aziendacont'),
		method: 'get',
		onComplete: function() {
			initLytebox();
		},
		onCancel: function() {
		}
		}).request();						
	}
	
	
	function ajaxload(Url) {

		  //var req = new XMLHttpRequest();
	  
	 if(window.XMLHttpRequest && !(window.ActiveXObject)) {
    	try {
			req = new XMLHttpRequest();
        } catch(e) {
			req = false;
        }
    // branch for IE/Windows ActiveX version
    } else if(window.ActiveXObject) {
       	try {
        	req = new ActiveXObject("Msxml2.XMLHTTP");
      	} catch(e) {
        	try {
          		req = new ActiveXObject("Microsoft.XMLHTTP");
        	} catch(e) {
          		req = false;
        	}
		}
    }	
	
	
	
		  if (req) {
			req.onreadystatechange = function() {
			  if (req.readyState == 4 && req.status == 200) {
				var frameSel = document.getElementById('aziendacont');
				frameSel.innerHTML = req.responseText;
				//initLytebox();
			  }
			};
			req.open('GET', Url);
			req.send(null);
			
		  }
		}

		// Cross Browser DOM
		// copyright Stephen Chapman, 4th Jan 2005
		// you may copy this code but please keep the copyright notice as well
		var aDOM = 0; /* var ieDOM = 0; */ var nsDOM = 0;
		var stdDOM = document.getElementById;
		if (stdDOM) aDOM = 1; else {/*ieDOM = document.all; if (ieDOM) aDOM = 1; else { */
		var nsDOM = ((navigator.appName.indexOf('Netscape') != -1)
		&& (parseInt(navigator.appVersion) ==4)); if (nsDOM) aDOM = 1; /* } */ }
		
		function xDOM(objectId, wS) {
			if (stdDOM) return wS ? document.getElementById(objectId).style:
			document.getElementById(objectId);
			if (ieDOM) return wS ? document.all[objectId].style: document.all[objectId];
			if (nsDOM) return document.layers[objectId];
		}		