Back to Scripts page
Click in the box below, select all and copy to grab the script
<SCRIPT LANGUAGE="JavaScript"> // This script copyright 1997, Tom Negrino and Dori Smith. // This script is from "JavaScript for the WWW, Visual QuickStart Guide, 2nd Ed." // For more information, see <http://www.chalcedony.com/javascript/>. // This script may be used and modified, but the copyright notice must remain intact. function validForm (form) { if (form.passwd1.value == "") { alert("You must enter a password") form.passwd1.focus() return false } if (form.passwd1.value != form.passwd2.value) { alert("Entered passwords did not match") form.passwd1.focus() form.passwd1.select() return false } return true } </SCRIPT>