// JavaScript Document
	function check_form()
	{
		var ok_to_go;
		ok_to_go=check_the_fields();
		
		return ok_to_go
	}
	
	
	function check_the_fields()
	{	
		customerText = self.document.forms[0].customer.value;
		passwordText = self.document.forms[0].password.value;
		
		if (customerText.length == "")
			{
				alert("Please enter the member number");
				//self.document.forms[0].customer.focus();
				//return false
				
			}
		
		t2=document.getElementById("customer").value
		apos=t2.indexOf("-");
		if (apos<1)
			{
				alert("Please enter your login in the format 1234567-1")
				document.getElementById("customer").focus();
				return false
			}
		
					
		if (self.document.forms[0].password.value == "")
			{
				alert("Please enter your password");
				document.getElementById("password").focus();
				return false
				
			}
		return true
	}