//Commentato da Simone Pavlovich 29/04/2010 
/*jQuery.fn.pi=function(opt){
		
		this.each(function(){
			//crea il template dell'oggetto
			var td_error = $("<td name='error' class='error_icon' onClick=\"alert('Formato mail non valido.')\" style=\"margin-left: 4px\" >?</td>");
			
			
			$.post(DIR_PHP+'common/funzioni.php',{ func :'checkPiva', country: 'IT', valore: 'Prova'}, 
					function(data){
							if(data == "INVALID")
							{
								$(this).addClass('error');
								$(this).record('disableSave');
								if( $(this).parent().parent().find('td[name=error]').length <= 0 ) {
									$(this).parent().parent().append(td_error);
								}
							}
				    }
			); 
		});

};*/

//Commentato da Simone Pavlovich 31/03/2010 
/*$('document').ready(function(){
	client.search.ready(function(){
		$('#SCREEN .pi').change(function(){$(this).pi();});
	},{type:"permanent"});
});*/