//Variables

//functions
function removeFromBasket(orderno){
   var name = "";
   for(var i=0; i<13; i++){
    name = document.confirmation[i].name;
    document.basketStatus[name].value = document.confirmation[i].value;
   }
  document.basketStatus.basketAction.value = "remove";
  document.basketStatus.orderno.value = orderno;
  document.basketStatus.submit();
}

function processSubmitForm(){
  if(document.confirmation.title.value=="") {
    alert("please insert the title!");
    return false;
  }
  if(document.confirmation.firstname.value=="") {
    alert("please insert your first name!");
    return false;
  }
  if(document.confirmation.surname.value==""){
    alert("please insert your surname!");
    return false;
  }
  if(document.confirmation.streetNo.value=="" && document.confirmation.customerID.value=="") {
    alert("please insert your street and the streetno.!");
    return false;
  }
  if(document.confirmation.zip.value=="" && document.confirmation.customerID.value=="") {
    alert("please insert your zip code!");
    return false;
  }
  if(document.confirmation.city.value=="" && document.confirmation.customerID.value=="") {
    alert("please insert the city!");
    return false;
  }
  if(document.confirmation.state.value=="" && document.confirmation.customerID.value=="") {
    alert("please insert the state!");
    return false;
  }
  if(document.confirmation.country.value=="" && document.confirmation.customerID.value==""){
    alert("please insert the country!");
    return false;
  }
  if(document.confirmation.email.value==""){
    alert("please insert your e-mail!");
    return false;
  }
  document.confirmation.submit();
}

