var mycontent=new Array()

mycontent[0]='<a href="http://www.evbar.ru/fordesk/"><img src="http://www.evbar.ru/banner/mnogo.gif" alt="много фото" border="0" width="468" height="60"></a>'


var i=0


if (document.all)
	bcontent.innerHTML=mycontent[i];
else if (document.getElementById){
	rng = document.createRange();
	el = document.getElementById("bcontent");
	rng.setStartBefore(el);
	htmlFrag = rng.createContextualFragment(mycontent[i]);
	while (el.hasChildNodes()) el.removeChild(el.lastChild);
	el.appendChild(htmlFrag);}








