//<![CDATA[
var rxEmailAddress	= /^(\w+|[.]|[-]+)+[@](\w+|[-]+)+[.](\w+|[.]|[-]+)+$/;
var rxTelephone		= /^[\(\)\+ 0-9]*$/;

function submitLogin()
{
	var txtEmail			= document.getElementById('txtEmail');
	var txtPassword			= document.getElementById('txtPassword');
	
	var errors			= '';

	if (txtEmail.value.length < 6 || txtEmail.value.length > 255 || !rxEmailAddress.test(txtEmail.value))
	{
		errors = errors + '- enter a valid email address between 6 and 255 characters in length\r\n';
	}
	
	if (txtPassword.value.length < 3 || txtPassword.value.length > 40)
	{
		errors = errors + '- enter a valid password between 3 and 40 characters in length\r\n';
	}

	if (errors.length > 0)
	{
		window.alert('Sorry, please correct the following before submitting the log-in form:\r\n\r\n' + errors);
	}
	else
	{
		alert("The database is currently being updated please leave your details on the contact us form and we will notify you as soon as the database is back on-line");
		//frmLogin.submit();
	}
}
//]]>