﻿function UpdatePanel(arg, context) {
    document.getElementById(context).innerHTML = arg;
}

function doClear(theText) {
    if (theText.value == theText.defaultValue) {
        theText.value = ""
    }
}
