//======================================================================
//DESC: validation & Field Edits for Functions for contact form
//
//PLATFORMS: NAV 3.0 IE 4.0
//
//USAGE NOTES: 
//
// Modifcations

/* ======================================================================
FUNCTION: Form_validator - Form validation for internal quotes

INPUT:		form object 
				
RETURNS: boolean		

DESC:							
====================================================================== */
  
function Form_Validator(objForm)
{

	if (isWhitespace(objForm.Name.value)) {
 		alert("Please a value in the Name Field ");
		objForm.Name.focus();
		return (false);
	}
	
	if (isWhitespace(objForm.Email.value)) {
 		alert("Please a value in the eMail Field ");
		objForm.Email.focus();
		return (false);
	}

  return (true);

}

