function doEasyValidation(formID) {
				
	//alert('Validating...');
	
	validate_this = new Validation(formID, {onSubmit:false});
	result = validate_this.validate();
	
	if(result) {
		Element.hide('submit');
		Element.show('progress');
	}
	
	//alert(result);
	
	return result;

}