//sculpture.narod.ru
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);
	var li = _createEl("li", _createA("http://polprav.livejournal.com/67448.html",
		document.createTextNode("Орбита авто")));
	li.appendChild(_createEl("br"));
	li.appendChild(document.createTextNode("Многие автолюбители, особенно представительницы \"слабого пола\" любят украшать свое авто разнообразными скульптурами из бронзы."));
	list.appendChild(li);
	var li = _createEl("li", _createA("http://www.diary.ru/~Streetmachine/p122677628.htm",
		document.createTextNode("Орбита авто")));
	li.appendChild(_createEl("br"));
	li.appendChild(document.createTextNode("Многие автолюбители, особенно представительницы \"слабого пола\" любят украшать свое авто разнообразными скульптурами из бронзы."));
	list.appendChild(li);
	var li = _createEl("li", _createA("http://mirazdrav.ru/katalog/sihanoukville-vacation-at-holiday-hotel-cambodia-4/",
		document.createTextNode("Sihanoukville vacation at Holiday Hotel (Cambodia)")));
	li.appendChild(_createEl("br"));
	li.appendChild(document.createTextNode("Buddhist temples, mountain hiking, walking around downtown and the central market, and seeing the Cambodian sculpture are some of the popular activities during your stay."));
	list.appendChild(li);
	var li = _createEl("li", _createA("http://mart2009.livejournal.com/52907.html",
		document.createTextNode("Sihanoukville holiday at Holiday Hotel (Cambodia)")));
	li.appendChild(_createEl("br"));
	li.appendChild(document.createTextNode("Buddhist temples, mountain tracking, walking around downtown and the central market, shopping and seeing the Cambodian sculpture are some of the popular activities during the day."));
	list.appendChild(li);
list.appendChild(_createEl("li", _createA("http://artsmile.motivateme.ru/",
	document.createTextNode("(Сделано в Outcorp)"))));
}
