﻿
    function stripHTML(boxID) {
        var theBox = $get(boxID);

        if (theBox) {
            var regEx = /<(.|\n)*?>/g;
            theBox.value = theBox.value.replace(regEx, "");
        }
    }


