function getById(id) {return document.getElementById(id);}
function newTag(tag) {return document.createElement(tag);}
function newText(text) {return document.createTextNode(text);}

function setMD(txt)
{
 getById('menudesc').firstChild.nodeValue = txt;
}