function fncValidateForm(frmObj) {
	if (frmObj.elements.usr_nombre.value.length < 1) {
		alert("All the fields are required. Please review the entered information");
		
		return false;
	}

	if (frmObj.elements.usr_priape.value.length < 1) {
		alert("All the fields are required. Please review the entered information");
		
		return false;
	}
	
	if (frmObj.elements.usr_email.value.length < 1) {
		alert("All the fields are required. Please review the entered information");
		
		return false;
	}
	
	if (frmObj.elements.usr_telefono.value.length < 1) {
		alert("All the fields are required. Please review the entered information");
		
		return false;
	}
	
	if (frmObj.elements.usr_message.value.length < 1) {
		alert("All the  are required. Please review the entered information");
		
		return false;
	}
	return true;
}
