
//--- Inserisci prodotto nel carrello
function fAcquista( pstrID_Prodotto, pintQuantita )
{
	$j('#quantita').val( pintQuantita );
	$j('#id_prodotto').val( pstrID_Prodotto );
	
	$j('#frmProdotto').submit();
}
