function quotationForm()
{
	if(document.forms[0].description.value == "")
	{
		alert("Omschrijf uw verzoek zo gedetailleerd mogelijk, svp.");
		document.forms[0].description.focus();
		document.forms[0].description.select();
	}
	else if(document.forms[0].name.value == "")
	{
		alert("Vul uw naam in, svp.");
		document.forms[0].name.focus();
		document.forms[0].name.select();
	}
	else if(document.forms[0].Email.value == "")
	{
		alert("Vul uw e-mailadres in, svp.");
		document.forms[0].Email.focus();
		document.forms[0].Email.select();
	}
	else if(document.forms[0].Email.value.indexOf('@') == -1)
	{
		alert("Vul uw e-mailadres correct in (voorbeeld: naam@domein.com)");
		document.forms[0].Email.focus();
		document.forms[0].Email.select();
	}
	else if(document.forms[0].country.value == "")
	{
		alert("Vul het land van herkomst in, svp.");
		document.forms[0].country.focus();
		document.forms[0].country.select();
	}
	else
	{
	document.forms[0].submit();
	}
}
