//<![CDATA[

function submitSignUp(identifier,room,form)
{
	if (form.indexOf("Detail") != -1) {
		var txtUserID			= document.getElementById('txtUserIDDetail');
		var txtAccountNo		= document.getElementById('txtAccountNoDetail');
	} else {
		var txtUserID			= document.getElementById('txtUserID');
		var txtAccountNo			= document.getElementById('txtAccountNo');
	}
	
	var errors			= '';
	
	if (txtUserID.value == txtUserID.defaultValue)
	{
		errors = errors + '- enter your ' + identifier + ' at ' + room + '\r\n';
	}
	
	if (txtAccountNo.value.length < 7 || txtAccountNo.value.length > 7 || txtAccountNo.value == txtAccountNo.defaultValue)
	{
		
		errors = errors + '- enter your 7-digit Boss PIN number (e.g 1234567) at ' + room + '\r\n';
	}

	if (errors.length > 0)
	{
		window.alert('Sorry, please correct the following before submitting the sign up form:\r\n\r\n' + errors);
		return false;
	}
	else
	{
		return true;
	}
}
//]]>