toolbox = function(){
var toolbox = document.createElement('div')
var tnode = document.createTextNode('my tekst')
toolbox.appendChild(tnode)
toolbox.appendChild(document.createTextNode('hej med dig'))
toolbox.appendChild(document.createElement('table'))
toolbox.lastChild.appendChild(document.createElement('tbody'))
toolbox.lastChild.firstChild.appendChild(document.createElement('tr'))
toolbox.lastChild.firstChild.firstChild.appendChild(document.createElement('td'))
toolbox.lastChild.firstChild.firstChild.firstChild.appendChild(document.createTextNode('Peter'))
document.body.appendChild(toolbox)
alert(document.body.innerHTML)
}