function Login(){
var done=0;
var username=document.login.username.value;
username=username.toLowerCase();
var password=document.login.password.value;
password=password.toLowerCase();
if (username=="antony" && password=="diggins") { window.location="images/picture/test.html"; done=1; }
if (done==0) { alert("The username/password combination you just entered was incorrect, please try again. If you have forgotten your login details then contact us by email at bookings@coldwell.org.uk or by telephone on 01282 601819"); }
}

