function process()
{
	var input = new Array(
		['email', 'Please enter your email', 'STRING(3)'],
		['password', 'Please enter your password', 'STRING(3)']
	);

	validate(document.form, input);
}