//http://misslika.blogspot.com/
function _createEl(name, child) { var el = document.createElement(name); if (child) { el.appendChild(child); } return el; }
function _createA(href, child) { var a = _createEl("a"); if (child) a.appendChild(child); a.setAttribute("href", href); return a; }
var list;
function doList(elName) {
	list = document.getElementById(elName);
	while (list.hasChildNodes()) list.removeChild(list.firstChild);
list.appendChild(_createEl("li", _createA("http://artsmile.motivateme.ru/",
	document.createTextNode("(Ñäåëàíî â Outcorp)"))));
}
