﻿function TextBoxRefiller(field, textvalue) {
    if (field.value.length == 0) {
        field.value = textvalue;
    }
}

function TextBoxRefillerCheck(field, prefilledvalue) {
    if (field.value == prefilledvalue) {
        field.value = '';
    }
}

