// JavaScript Document
		
var valid = new Validation('cform');

Validation.addAllThese([
	 ['validate-name', 'Please enter your name, so we know who to say hi to.', function(v) {
	   return !Validation.get('IsEmpty').test(v);
	 }],
	 ['validate-email-ok', 'Danger, Will Robinson, e-mail address does not compute!', function(v) {
	   return !Validation.get('IsEmpty').test(v) && Validation.get('validate-email').test(v);
	 }],
	 ['validate-comments', 'Tell us how we can help, or, at the very least, mash your keyboard with the palm of your hand.', function(v) {
	   return !Validation.get('IsEmpty').test(v);
	 }]
]);