// JavaScript Document
function ordina_art(campo, id){

var f=document.form1;

  if(confirm("AGGIUNGO L'ARTICOLO AL CARRELLO?")) {
	  f.submit();
//	  window.location = "fnc/ordine.php?lng="+campo+"&aggiungi="+id;
	  return true;
  } else {

	  return false;
  }

}


function disconnesione(){


  if(confirm("ESEGUO IL LOGOUT")) {
	  window.location = "?esci=true";
	  return true;
  } else {
	  return false;
  }

}
