function RotateTower()
{
   images = new Array();
   urls = new Array();

   images[0] = "../images/towers/fashioncentsdeluxe160x600.jpg";
   images[1] = "../images/towers/fashioncentsgents160x600.jpg";
   images[2] = "../images/towers/scrapbookpaige.jpg";
   images[3] = "../images/towers/bobthebuildercandocarnival.jpg";

   urls[0] = "FashionCentsDeluxe/main.htm";
   urls[1] = "FashionCentsGents/main.htm";
   urls[2] = "Other/scrapbookpaige.htm";
   urls[3] = "Other/bobthebuilder.htm";

   count = 4;

   index = Math.floor(Math.random() *count);

   document.writeln("<a href=\""+urls[index]+"\"><img border=0 src="+images[index]+"></a>");
}

