// JavaScript Document
function jqAjaxLink(fileToLoad, dataConteiner) {
	//$(dataConteiner).html("<div style='vertical-align:center;text-align:center;height:300px;'><img src='image/loadinfo_net.gif' /></div>");//--loading
	//alert(fileToLoad);
	$(dataConteiner).html("loading...");//--loading
	$.ajax({
	    url: fileToLoad,
        success:	function(data){ $(dataConteiner).html(data); },		  //data č la variabile che conterrā il risultato
        error:		function(data){ $(dataConteiner).html("An error occurred"); },
        cache:		false
    });
	}//jqAjaxLink
