﻿function cleartextbox(arg1) {
    var textbox = document.getElementById(arg1);
    textbox.value = '';
}

function filltextbox(arg1, arg2) {
    var textbox = document.getElementById(arg1);

    if (textbox.value == '') {
        textbox.value = arg2;
    }
}
