// JavaScript Document
function cerca()
{  
    document.f1.submit();
}


function al_cistell(accio,article,descr,preu,quants)
{ 
  var verb    = '';
  var prepart = '';
  if (accio == 'afegir')   { verb ='afegir'; prepart = 'al'; }
  if (accio == 'esborra') { verb ='treure'; prepart = 'del'; }
  var agree=confirm("Està segur que vol " + verb + " aquest article " + prepart + " cistell?");
  if (agree)
  {
	  f=document.forms['cistell'];
	  f.accio.value      = accio;
	  f.codi.value       = article;
	  f.preu.value       = preu;
	  f.descripcio.value = descr;
	  f.unitats.value    = quants;
	  f.action           = "txt_carro.php";
	  f.submit();  
  }	  
}


function updown_cistell(accio,article,descr,preu,quants)
{ f=document.forms['cistell'];
  f.action = 'txt_carro.php';
  f.accio.value=accio;
  f.codi.value=article;
  f.preu.value=preu;
  f.descripcio.value=descr;
  f.unitats.value=quants;
  f.submit();  
}