// check if no error on Log in form
function errorCheck (f)
{
	var error;
	var bok = true;
	if( f.username.value == '' || f.password.value == '' )
	{
		alert ("The username and password cannot be blank");
		bok = false;
	}
	return bok;
}

