// JavaScript Document
 
 function is_int(value){
    if((parseFloat(value) == parseInt(value)) && !isNaN(value)){
      return true;
  } else {
      return false;
  }
}


function check_qty(idtag,id){
				valore 		= document.getElementById('quantita'+idtag).value; 
				valore_prec = document.getElementById('quantita_prec'+idtag).value; 
				 if(!(is_int(valore))){
				 alert(valore +' non è un valore valido.');
				 document.getElementById('quantita'+idtag).value =valore_prec;
				 }else{
					 
					$(document).ready(function(){
						$('#viewcarrello').show(200);$('#viewcarrello').load('ajax/carrello_grande.php?azione=mod_qty_articolo&id='+id+'&qty='+valore);
					});
					 
					 aggiorna_qty_art(id,valore);
					
					 
					
					 }
		 }
		 
function check_qty_grande(idtag,id){
				valore 		= document.getElementById('quantita_grande'+idtag).value; 
				valore_prec = document.getElementById('quantita_prec_grande'+idtag).value; 
				 if(!(is_int(valore))){
				 alert(valore +' non è un valore valido.');
				 document.getElementById('quantita_grande'+idtag).value =valore_prec;
				 }else{
					 
					$(document).ready(function(){
						$('#viewcarrello').show(200);$('#viewcarrello').load('ajax/carrello_grande.php?azione=mod_qty_articolo&id='+id+'&qty='+valore);
					});
					
					aggiorna_qty_art(id,valore);
					
					 }
		 }

				
