function Login(form1) {
if (form1.username.value =="bayar" && form1.password.value =="bayar7002")
{
self.location.href ="http://www.bayar-associates.co.uk/logincheck.php";
}
else
	{
alert("Either the username or password you entered is incorrect.\nPlease try again.");
form1.username.focus();
return true;
	}
	}

