/*
LangPak: en_US
*/

var ValidateFormV2_langPak = new Class({
	Extends: ValidateFormV2,
	
	initialize: function(options) {
		this.parent(options);
		
		this.errorMsgList = new Hash({
			1	 : 'Warning!',
			1000 : 'All fields marked with an asterix (<span class="orange">*</span>) are required.',
			1001 : 'Only numbers are permitted.',
			1002 : 'Invalid email format.',
			1003 : 'The passwords are not identical.',
			1004 : 'Insufficient amount of characters.',
			1005 : 'Please select among the choices.'
		});
		
	}
}); 