for (var i=0; i<listArray.length; i++)
{
html = "";
li = document.createElement('li');
id = null;
id = listArray.item(i).getAttribute("id");
(function( id ) {
li.onclick = function(){
GetItem( id );
}
})( id );
if (!listArray.item(i).firstChild){
html += "-без названия-";
}
else{
html += listArray.item(i).firstChild.data;
}
li.innerHTML = html;
myUl.appendChild(li);
}