function loadPromo(rnd) {

	order = new Array;
	for (i=1;i<=promonumber;i++) { order[i] = i; }

   if (rnd == 'random') {
       order.sort(function() {return 0.5 - Math.random()})
   }

   var i=1;
   var html = "";
   for (i=1;i<=4;i++)
   {
   var index = order[i];
   html = html+ '<div id="promo1" class="boxlong"><a href="' + links[index] + '"  target="' + targets[index] + '"><img align="left" src="' + images[index] + '"><strong>' + titles[index] + '</strong><br>'+texts[index]+'<br><span>More</span></div>';
   }

   var content = document.getElementById('searchBoxBody');   
   content.innerHTML = content.innerHTML + html;
}