﻿

function createControls(ctrls){
	ctrls.push(['EMail', 'isNotEmpty', 'Your E-Mail address?']);	
	ctrls.push(['EMail', 'isEMailAddr', 'No, this is not a valid E-Mail address, sorry!']);	
	ctrls.push(['Pass', 'isNotEmpty', 'Your password?']);	
	ctrls.push(['Pass2', 'isNotEmpty', 'You did not retype your password!']);	
	ctrls.push(['Pass', 'isIdentical', 'Passwords do not match together.', 'Pass2']);
	ctrls.push(['ImageValidator', 'isNotEmpty', 'Please, insert person verification number!']);
	
}