
function changeImage(currentImage)
	{
	var nextimage, bgimage;
	bgimage = "images/box_bg_150.gif";
	nextimage = Math.floor(Math.random()* (promo.length+1))

	/*if(currentImage == promo.length-1)
		{
		nextimage = 0;
		}
	else
		{
		nextimage = currentImage + 1;
		}*/
	
	if(typeof document.getElementById('HomepageImage') !='undefined'){
		var imgobj = document.getElementById('HomepageImage');
	
		var re = "[^0-9a-zA-Z-уютўК-]"
		var str = promo[nextimage].purl
		str = str.replace(re, "-")
	
		imgobj.align = 'right';
		imgobj.width = 600	
		imgobj.innerHTML = "<table border=0 valign=middle cellpadding=0 cellspacing=0><tr><td width=288 height=295>"
		+ "<img vspace=0 hspace=0 src='/images/homepage_left.jpg' width=288 height=295 border=0></td>"
		+ "<td bgcolor=white><a style='padding:0;' href='" + str + "_" + promo[nextimage].pid + ".htm'>"
		+ "<img vspace=0 hspace=0 class=pimage title='" + promo[nextimage].title + "!' src='" + promo[nextimage].url + "' width='" + promo[nextimage].imgW + "' height = '" + promo[nextimage].imgH + "' border=0></a>"
		+ "</td></tr></table>"		
		//document.getElementById('_' + promo[nextimage].pid).style.backgroundImage = 'url("' + promo[nextimage].url + '")';
		//document.getElementById('_' + promo[nextimage].pid).style.backgroundImage = 'url(' + promo[nextimage].url + ')';		
		
	}	
	
	//setTimeout("changeImage(" + nextimage + ")", 3000);
	}