
function set_bgimage(tid)
	{
	var bgimage = "";
	var height = 0;
	var imgheight = 0;
	var obj = document.getElementById('table_'+tid);
	var objimage = document.getElementById('image_'+tid);

	height = obj.offsetHeight;

	if(height>=150) { bgimage = "images/box_bg_150.gif"; imgheight=150; }
	if(height>=250) { bgimage = "images/box_bg_250.gif"; imgheight=250;  }
	if(height>=400) { bgimage = "images/box_bg_400.gif"; imgheight=400;  }
	
	if(bgimage!="")
		{
		obj.style.backgroundImage = "url('" + bgimage + "')";
		obj.className = "box";
		objimage.style.height = imgheight;
		}
	}

function ex_init(s)
{
  var regExp=/<\S[^>]*>/g;
  return s.replace(regExp,"")
}

function ReplaceAlphaNumeric (str)
{	alert('before:' + str)
	var regEx, RetStr, Match, Matches, s
	s = str
	regEx = new RegExp("[^0-9a-zA-Z-уютўК-]")
	regEx.IgnoreCase = true
	regEx.Global = true
	
	s.replace(regEx, "-")
    	alert('after:' + s);
    return s
}    


function changeImage(currentImage)
	{
	var nextimage;
	if(currentImage == promo.length-1)
		{
		nextimage = 0;
		}
	else
		{
		nextimage = currentImage + 1;
		}
	
	var imgobj = document.getElementById("promoimage");
	
	var titlu = promo[nextimage].nume;
	/*if (promo[nextimage].price!=0)
		{
		titlu = titlu + " &raquo; <font color=black>Pret: " + promo[nextimage].price + " lei</font>";
		}*/
	
	
	
	/*imgobj.innerHTML = "<a href='products.asp?cid=" + promo[nextimage].catid  + "&fn=" + promo[nextimage].catname + "_" + promo[nextimage].catid + "'><img class=pimage title='Vezi toate produsele din aceasta categorie!' src='" + promo[nextimage].url + "' width='" + promo[nextimage].imgW + "' height = '" + promo[nextimage].imgH + "' border=0></a>";*/
	imgobj.innerHTML = "<a href='" + promo[nextimage].catname + "_" + promo[nextimage].catid + ".htm'><img class=pimage title='Vezi toate produsele din aceasta categorie!' src='" + promo[nextimage].url + "' width='" + promo[nextimage].imgW + "' height = '" + promo[nextimage].imgH + "' border=0></a>";

	var titleobj = document.getElementById("promoname");
	titleobj.innerHTML = titlu;

	setTimeout("changeImage(" + nextimage + ")", 3000);
	}