function checkform (form) {
        if ((form.gotcha.value != "")) {
                alert( "No spam." );
                form.gotcha.focus();
                return false ;
                }
        return true ;
}
