// JavaScript Document

//
// Validate the contact.php form
//
function ValidateContactForm(){
	var rtnValue = true;
	var errMsg = '';
	if ( $('#textEmail').val() == '' ){
		errMsg += 'Name is required<br />';
		rtnValue = false;
	}
	if ( $('#textName').val() == '' ){
		errMsg += 'Email is required<br />';
		rtnValue = false;
	}
	
	if (rtnValue == false){
		$('#errorContainerMessage').html(errMsg);
		$('#errorContainer').css('display', 'block');
	}
	
	return rtnValue;
}
