//***** FUNZIONI DEL CAMPO QUANTITA' DI INSERISCI NEL CARRELLO *****

function Convalida(){
	  
	  var checkOK = "0123456789";
	  var checkStr = document.frmAcquista.txtQuantita.value;
	  var allValid = true;
	  for (i = 0;  i < checkStr.length;  i++)
	  {
		ch = checkStr.charAt(i);
		for (j = 0;  j < checkOK.length;  j++)
		  if (ch == checkOK.charAt(j))
			break;
		if (j == checkOK.length)
		{
		  allValid = false;
		  break;
		}
	  }
	  if (!allValid)
	  {
		alert("Please, Enter a numeric value for the entire amount");
		document.frmAcquista.txtQuantita.focus();
		return (false);
	  }	  
	  
	  if (document.frmAcquista.txtQuantita.value==""){
		alert("Please, Enter the amount you want first to enter the product in basket");
		document.frmAcquista.txtQuantita.focus();
		return (false);
	  }  		
}
//***** FUNZIONI DEL CAMPO QUANTITA' DI INSERISCI NEL CARRELLO *****
