var adblock=new Array();
adblock[0]='<img src="/res//content/c62/toyota-banner.jpg" border=0>';

function randomorder(targetarray, spacing) {
  var randomorder=new Array()
  var the_one
  var z=1
  for (i=0;i<targetarray.length;i++)
  randomorder[i]=i
  if(targetarray.length  > 1)
  {
	while (z<targetarray.length)
	{
		the_one=Math.floor(Math.random()*targetarray.length)
		if (targetarray[the_one]!='_selected!')
		{
			document.write(targetarray[the_one]+spacing)
			targetarray[the_one]='_selected!'
			z++
		}
	}
  }
  else
	document.write(targetarray[0]+spacing);
}		
		

