﻿
    // Takes the highight off the textbox when focus is lost
    function DoBlur(fld, size) {
        fld.className = 'TextBox' + size;
    }

    // Adds a highlight to to the textbox when it receives the focus
    function DoFocus(fld, size) {
        fld.className = 'TextBox' + size + 'On';
    }


