    function confirmBox(inLocation) {
        if(confirm("Are you sure?")) {
                location=inLocation
        } else {
                return false;
        }
    }

    function confirmBoxF(form) {
        if(confirm("Are you sure?")) {
                form.submit();
        } else {
                return false;
        }
    }
