var FormHelper =
{
    FocusField: function(that, value) {
        if (that.value == value) {
            that.value = '';
        }
    },
    BlurField: function(that, value) {
        if (that.value == '') {
            that.value = value;
        }
    }
}
