Hi again - hope you all had a great weekend. This is a 'snippet' from some code I'm using to validate forms, the ones I want to ask about are the following: else if (form.newPASS.value =="") {alert("Please include your new password.");form.newPASS.select(); }else if (form.newPASS2.value =="") {alert("Please repeat your new password.");form.newPASS2.select(); }It all works lovely, however how can I get it to show an alert if the two passwords entered do not match? any help you can give me will be much appreciated ! Thanks.