// MuleV2 JavaScript
// -----------------

// --- Customer Center Formular
function FormCheck()
{
	// Locals
	Status = 0;
	StatusZusatz = 0;
	Schicken = false;
	
	// Check Funktion
	function Check_Inner(Status)
	{
		// RegEx kreieren und bei Email-Check einbinden
		Email_RegEx = /^([a-zA-Z0-9-])+([\.a-zA-Z0-9_-])*@([a-zA-Z0-9-])+(\.[a-zA-Z0-9_-]+)+$/;
		
		if (document.Kontaktformular_MuleV2.Name.value == '')
		{
			document.getElementById("L_Name").style.color = "red";
			document.getElementById("L_Name").style.fontWeight = "bold";
		}
		else
		{
			document.getElementById("L_Name").style.color = "#666666";
			document.getElementById("L_Name").style.fontWeight = "normal";
			Status += 1;
		}
		if (document.Kontaktformular_MuleV2.Vorname.value == '')
		{
			document.getElementById("L_Vorname").style.color = "red";
			document.getElementById("L_Vorname").style.fontWeight = "bold";
		}
		else
		{
			document.getElementById("L_Vorname").style.color = "#666666";
			document.getElementById("L_Vorname").style.fontWeight = "normal";
			Status += 1;
		}
		if (document.Kontaktformular_MuleV2.Strasse.value == '')
		{
			document.getElementById("L_Strasse").style.color = "red";
			document.getElementById("L_Strasse").style.fontWeight = "bold";
		}
		else
		{
			document.getElementById("L_Strasse").style.color = "#666666";
			document.getElementById("L_Strasse").style.fontWeight = "normal";
			Status += 1;
		}
		if (document.Kontaktformular_MuleV2.Nr.value == '')
		{
			document.getElementById("L_Nr").style.color = "red";
			document.getElementById("L_Nr").style.fontWeight = "bold";
		}
		else
		{
			document.getElementById("L_Nr").style.color = "#666666";
			document.getElementById("L_Nr").style.fontWeight = "normal";
			Status += 1;
		}
		if (document.Kontaktformular_MuleV2.Ort.value == '')
		{
			document.getElementById("L_Ort").style.color = "red";
			document.getElementById("L_Ort").style.fontWeight = "bold";
		}
		else
		{
			document.getElementById("L_Ort").style.color = "#666666";
			document.getElementById("L_Ort").style.fontWeight = "normal";
			Status += 1;
		}
		if (document.Kontaktformular_MuleV2.PLZ.value == '')
		{
			document.getElementById("L_PLZ").style.color = "red";
			document.getElementById("L_PLZ").style.fontWeight = "bold";
		}
		else
		{
			document.getElementById("L_PLZ").style.color = "#666666";
			document.getElementById("L_PLZ").style.fontWeight = "normal";
			Status += 1;
		}
		if (document.Kontaktformular_MuleV2.Tel.value == '')
		{
			document.getElementById("L_Tel").style.color = "red";
			document.getElementById("L_Tel").style.fontWeight = "bold";
		}
		else
		{
			document.getElementById("L_Tel").style.color = "#666666";
			document.getElementById("L_Tel").style.fontWeight = "normal";
			Status += 1;
		}
		if (document.Kontaktformular_MuleV2.DSB_Accept.checked == false)
		{
			document.getElementById("L_DSB_Accept").style.color = "red";
			document.getElementById("L_DSB").style.color = "red";
			document.getElementById("L_DSB").style.fontWeight = "bold";
			document.getElementById("DSB_Data").style.border = "red solid 1px";
		}
		else
		{
			document.getElementById("L_DSB_Accept").style.color = "#666666";
			document.getElementById("L_DSB").style.color = "#666666";
			document.getElementById("L_DSB").style.fontWeight = "normal";
			document.getElementById("DSB_Data").style.border = "none";
			Status += 1;
		}
		if (document.Kontaktformular_MuleV2.Email.value == '' || !Email_RegEx.test(document.Kontaktformular_MuleV2.Email.value))
		{
			document.getElementById("L_Email").style.color = "red";
			document.getElementById("L_Email").style.fontWeight = "bold";
			document.getElementById("FehlerAnzeigeMail").style.display = "block";
		}
		else
		{
			document.getElementById("L_Email").style.color = "#666666";
			document.getElementById("L_Email").style.fontWeight = "normal";
			document.getElementById("FehlerAnzeigeMail").style.display = "none";
			Status += 1;
		}
		/*if (document.Kontaktformular_MuleV2.Filiale.value == '')
		{
			document.getElementById("L_Filiale").style.color = "red";
			document.getElementById("L_Filiale").style.fontWeight = "bold";
		}
		else
		{
			document.getElementById("L_Filiale").style.color = "#666666";
			document.getElementById("L_Filiale").style.fontWeight = "normal";
			Status += 1;
		}*/
		if (Status < 9)
		{
			document.getElementById("FehlerAnzeige").style.display = "inline";
		}
		else
		{
			document.getElementById("FehlerAnzeige").style.display = "none";
		}
		return Status;
	}
	
	if (Check_Inner(Status) == 9)
	{
		Schicken = true;
		return Schicken;
	}
	else
	{
		Schicken = false;
		return Schicken;
	}
}
