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

}