/**
 * @author amedeo
 */
function powerflex_listApplicazioni(limitpage,limitcount,sortcol,sortdir,marca,modello,descrizione,da_anno,a_anno) {
	//var baseUrl = 'http://t2';

 
	var destUrl = '/powerflexasync/listapps' +
				  '/limitpage/'  + limitpage +
				  '/limitcount/' + limitcount +
				  '/sortcol/'      + sortcol +
				  '/sortdir/'      + sortdir +
				  '/marca/'      + marca +
	  		      '/modello/'    + modello +
	  		      '/descrizione/'    + descrizione +
	  		      '/da_anno/'    + da_anno +
	  		      '/a_anno/'     + a_anno;

//	alert('esegue: '+ destUrl);
	$.ajax( {
		url : destUrl,
		type : 'GET',
		success : function(responseText) {
			$("#dyn_tab_applicazioni").html(responseText);
		}
	})

}

function showSchedaProdotto(codice) {
	var destUrl = '/powerflexasync/scheda' +
	  '/codice/'  + codice;
	$.ajax( {
		url : destUrl,
		type : 'GET',
		success : function(responseText) {
			$("#dyn_scheda_prodotto").html(responseText);
		}
	})
	
}