jQuery.ajax({
	type: "GET",
	url: checklogin
});


/*TAG SCHEDE*/

function loadingDiv(div,url) {
	url = url.replace('&amp;','&');
	jQuery('#'+div).html('<img style="margin:20px;" src="/intoscana2/export/system/modules/it.inera.opencms.templates/intoscana/toolbar/i/loader-tw.gif" alt="Caricamento..." />');
	jQuery.ajax({
		type: "GET",	
		url: url,
		cache: false,
		success: function(data){			
			jQuery('#'+div).html(data);
		}
	});
	return false;
}


