/**
*	Set events
**/
$(document).ready(function()
{
	$('#email2').focus();
});

// -----------------------------------------------------------------------

/**
*	Validates the email form
**/
function CheckEmailForm() {

	var errors = new Array();

	// Check email valid
	if (!CheckValidEmail('email2')) 
	{
		errors.push(CreateValidationErrorObject('email2', 'Je hebt geen geldig emailadres ingevuld.'));
	}	

	// Check errors
	if (errors.length == 0)
	{
		// Submit form
		return true;
	}
	else
	{	
		// Validation failed
		ShowValidationErrors(errors);
		return false;
	}
	
}

