function tpxDisplay(id){
    document.getElementById(id).style.display = "inline-block";
}
function tpxHide(id){
    document.getElementById(id).style.display = "none";
}
function tpxClearTextBox(object){
    object.defaultValue = '';
    object.select();
}
