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

   images[0] = "http://www.mygamecompany.com/images/banners/anka.jpg";
   images[1] = "http://www.mygamecompany.com/images/banners/budredhead.gif";
   images[2] = "http://www.mygamecompany.com/images/banners/eschalonbook2.jpg";
   images[3] = "http://www.mygamecompany.com/images/banners/fairway.jpg";
   images[4] = "http://www.mygamecompany.com/images/banners/greatinternationalwordsearch.jpg";
   images[5] = "http://www.mygamecompany.com/images/banners/mahjongforests.jpg";
   images[6] = "http://www.mygamecompany.com/images/banners/midnightmansion.gif";
   images[7] = "http://www.mygamecompany.com/images/banners/littlespaceduo468x60.jpg";
   images[8] = "http://www.mygamecompany.com/images/banners/lux1.gif";
   images[9] = "http://www.mygamecompany.com/images/banners/rainbowweb3.jpg";
   images[10] = "http://www.mygamecompany.com/images/banners/revengeofthetitans2.jpg";
   images[11] = "http://www.mygamecompany.com/images/banners/sunkenwords.jpg";
   images[12] = "http://www.mygamecompany.com/images/banners/strimko.jpg";
   images[13] = "http://www.mygamecompany.com/images/banners/threemusketeers2.jpg";
   images[14] = "http://www.mygamecompany.com/images/banners/titanattacks480x60.jpg";
   images[15] = "http://www.mygamecompany.com/images/banners/weddingsalon.jpg";
   images[16] = "http://www.mygamecompany.com/images/banners/rickrocket468x60.jpg";
   images[17] = "http://www.mygamecompany.com/images/banners/dirkdashing2_468x60.jpg";
   images[18] = "http://www.mygamecompany.com/images/banners/fcd_ad468x60.jpg";
   images[19] = "http://www.mygamecompany.com/images/banners/fashioncentsgents468x60.jpg";

   urls[0] = "http://www.mygamecompany.com/Products/Other/anka.htm";
   urls[1] = "http://www.mygamecompany.com/Products/Other/budredhead.htm";
   urls[2] = "http://www.mygamecompany.com/Products/Other/eschalonbook2.htm";
   urls[3] = "http://www.mygamecompany.com/Products/Other/fairway.htm";
   urls[4] = "http://www.mygamecompany.com/Products/Other/greatinternationalwordsearch.htm";
   urls[5] = "http://www.mygamecompany.com/Products/Other/mahjongforests.htm";
   urls[6] = "http://www.mygamecompany.com/Products/Other/midnightmansion.htm";
   urls[7] = "http://www.mygamecompany.com/Products/Other/littlespaceduo.htm";
   urls[8] = "http://www.mygamecompany.com/Products/Other/luxdeluxe.htm";
   urls[9] = "http://www.mygamecompany.com/Products/Other/rainbowweb3.htm";
   urls[10] = "http://www.mygamecompany.com/Products/Other/revengeofthetitans.htm";
   urls[11] = "http://www.mygamecompany.com/Products/Other/sunkenwords.htm";
   urls[12] = "http://www.mygamecompany.com/Products/Other/strimko.htm";
   urls[13] = "http://www.mygamecompany.com/Products/Other/threemusketeers.htm";
   urls[14] = "http://www.mygamecompany.com/Products/Other/titanattacks.htm";
   urls[15] = "http://www.mygamecompany.com/Products/Other/weddingsalon.htm";
   urls[16] = "http://www.mygamecompany.com/Products/RickRocket/index.htm";
   urls[17] = "http://www.mygamecompany.com/Products/DirkDashing2/main.htm";
   urls[18] = "http://www.mygamecompany.com/Products/FashionCentsDeluxe/main.htm";
   urls[19] = "http://www.mygamecompany.com/Products/FashionCentsGents/main.htm";

   count = 20;

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

   document.writeln("<p align=\"center\" style=\"margin-top: 0; margin-bottom: 0\"><a href=\""+urls[index]+"\"><img border=0 src="+images[index]+"></a></p>");
}

