	function checkSubmit(){
		var errors = '';
		$('#Postcode').val( $('#Postcode').val().replace( /([^0-9a-z]+)/i, "" ).toUpperCase() );

		if( $('#Voornaam').val().length < 1 ){
			$('#Voornaam').css( 'background-color', '#cccccc' );
		    errors += '- Voornaam\n';
		} else {
			$('#Voornaam').css( 'background-color', '#ffffff' );
		}

		if( $('#Achternaam').val().length < 2 ){
			$('#Achternaam').css( 'background-color', '#cccccc' );
		    errors += '- Achternaam\n';
		} else {
			$('#Achternaam').css( 'background-color', '#ffffff' );
		}

		if( $('#Bedrijfsnaam').val().length < 2 ){
			$('#Bedrijfsnaam').css( 'background-color', '#cccccc' );
		    errors += '- Bedrijfsnaam\n';
		} else {
			$('#Bedrijfsnaam').css( 'background-color', '#ffffff' );
		}

		if( $('#Straat').val().length < 2 ){
			$('#Straat').css( 'background-color', '#cccccc' );
		    errors += '- Straat\n';
		} else {
			$('#Straat').css( 'background-color', '#ffffff' );
		}

		if( $('#Huisnummer').val().length < 2 ){
			$('#Huisnummer').css( 'background-color', '#cccccc' );
		    errors += '- Huisnummer\n';
		} else {
			$('#Huisnummer').css( 'background-color', '#ffffff' );
		}

		if( !$('#Postcode').val().match( /^([0-9]{4}[A-Z]{2}|[0-9]{5})$/ ) ){
			$('#Postcode').css( 'background-color', '#cccccc' );
		    errors += '- Postcode\n';
		} else {
			$('#Postcode').css( 'background-color', '#ffffff' );
		}

		if( $('#Plaats').val().length < 2 ){
			$('#Plaats').css( 'background-color', '#cccccc' );
		    errors += '- Plaats\n';
		} else {
			$('#Plaats').css( 'background-color', '#ffffff' );
		}

		if( !$('#Emailadres').val().match( /^([0-9a-z][0-9a-z\-\_\.]+)+\@([0-9a-z][0-9a-z\-\_\.]+)+\.([a-z]{2,5})$/i ) ){
			$('#Emailadres').css( 'background-color', '#cccccc' );
		    errors += '- Emailadres\n';
		} else {
			$('#Emailadres').css( 'background-color', '#ffffff' );
		}

		if( $('#Telefoon').val().length < 2 ){
			$('#Telefoon').css( 'background-color', '#cccccc' );
		    errors += '- Telefoon\n';
		} else {
			$('#Telefoon').css( 'background-color', '#ffffff' );
		}

		if( errors.length > 0 ){
			alert( 'De volgende velden zijn nog niet correct ingevuld:\n\n'+errors );
			return false;
		}
		return true;
	}
