var emailAddress;

function controlsInit()
{
	emailAddress = new Ext.form.TextField(
	{
		allowBlank : false,
		applyTo: emailAddressID,
		blankText : 'This is a required field. Please enter the email address used when registering for HOAInTouch.com.',
		emptyText : 'email address',
		tabIndex : 1,
		vtype : 'email',
		width: 200
	});
	Ext.form.FormPanel.controls.add('emailAddress', emailAddress);
	
	emailAddress.on('specialkey', function(emailAddress, e)
	{
		if (e.getKey() == Ext.EventObject.ENTER)
		{
			$(resetPasswordID).focus();
		}
	});
}