function checkFSP() {
missinginfo = "";

if (document.fsp.Produkt.value=="0") {
missinginfo += "Du mangler at vælge et produkt\n\n";
}

if (document.fsp.Firma.value=="") {
missinginfo += "Du mangler at indtaste et firma\n\n";
}

if (document.fsp.Adresse.value=="") {
missinginfo += "Du mangler at indtaste en adresse\n\n";
}

if (document.fsp.Kontaktperson.value=="") {
missinginfo += "Du mangler at indtaste en kontaktperson\n\n";
}

if (document.fsp.Land.value=="") {
missinginfo += "Du mangler at indtaste et land\n\n";
}

if (document.fsp.Telefon.value=="") {
missinginfo += "Du mangler at indtaste et telefonnummer\n\n";
}

if (missinginfo != "") {
missinginfo +="_____________________________\nRet venligst og tryk på Send!";
alert(missinginfo);
return false;
}
else return true;
}



function checkFSPDE() {
missinginfo = "";

if (document.fsp.Produkt.value=="0") {
missinginfo += "bitte produkt feld ausfüllen\n\n";
}

if (document.fsp.Firma.value=="") {
missinginfo += "bitte firma feld ausfüllen\n\n";
}

if (document.fsp.Adresse.value=="") {
missinginfo += "bitte adresse feld ausfüllen\n\n";
}

if (document.fsp.Kontaktperson.value=="") {
missinginfo += "bitte ansprechpartner feld ausfüllen\n\n";
}

if (document.fsp.Land.value=="") {
missinginfo += "bitte land feld ausfüllen\n\n";
}

if (document.fsp.Telefon.value=="") {
missinginfo += "bitte telefonnummer feld ausfüllen\n\n";
}

if (missinginfo != "") {
missinginfo +="_____________________________\nbitte ausfüllen und Abschicken!";
alert(missinginfo);
return false;
}
else return true;
}

function checkFSPUK() {
missinginfo = "";

if (document.fsp.Produkt.value=="0") {
missinginfo += "You have to choose a produkt\n\n";
}

if (document.fsp.Firma.value=="") {
missinginfo += "You have to type the company\n\n";
}

if (document.fsp.Adresse.value=="") {
missinginfo += "You have to type the adresse\n\n";
}

if (document.fsp.Kontaktperson.value=="") {
missinginfo += "You have to type the contact\n\n";
}

if (document.fsp.Land.value=="") {
missinginfo += "You have to type the country\n\n";
}

if (document.fsp.Telefon.value=="") {
missinginfo += "You have to type the telefonnumber\n\n";
}

if (missinginfo != "") {
missinginfo +="_____________________________\nplease change and push Send!";
alert(missinginfo);
return false;
}
else return true;
}

