

 function shoppingSubmit(Kase, ID, Action) {
  document.shoppingForm.shopping_control.value=Kase;
  document.shoppingForm.shopping_id.value=ID;
  document.shoppingForm.shopping_action.value=Action;
  document.shoppingForm.submit();
 }

function shipTo(Num) {
 document.shoppingForm.shipType.value=Num
 shoppingSubmit(4, null, null);
}


function maxOrder(Id, Max, Lang) {
 Field = document.getElementById(Id);
 if(Field.value > Max) {
  if(Lang == 1)
   alert("There are only "+Max+" remaining seats");
  else
   alert("Il ne reste que "+Max+"  places");
  return false;
 }
 return true;
}
