// JavaScript Document

function chngtext(id, text) {
    if(document.getElementById) {
        obj = document.getElementById(id);
        obj.childNodes[0].nodeValue = text;
    }
}
