////////////////////////////////////////////////////////////////
// Initialize
////////////////////////////////////////////////////////////////
window.addEvent(
	'domready', 
	function() { 
		initContactForm();
	}
);



////////////////////////////////////////////////////////////////
// Functions
////////////////////////////////////////////////////////////////
function initContactForm() { 
	$('contactform').addEvent(
		'submit',
		function() { 
			return validateContact();
		}
	);
}



function validateContact() { 			
	var errors = '';

	// Validate Fields
	if ($('userfullname').value == '') 	errors += 'Please fill in your Full Name.\n'; 
	if ($('useremail').value == '') {  	errors += 'Please fill in your E-mail.\n'; }
	else { 
		var emailRegex = /[^@\s]+@\S+?\.\S+/;
		if (!emailRegex.test($('useremail').value)) { 
			errors += 'Email is invalid format.\n'; 
		}
	}
	if ($('usercomments').value == '') {  	errors += 'Please type in your Message.\n'; }

	// Check Errors
	if (errors) { alert(errors); return false; } else { return true; }
}

