function RotateBannerWindows()
{
   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/dawnslight2.jpg";
   images[3] = "http://www.mygamecompany.com/images/banners/eschalonbook2.jpg";
   images[4] = "http://www.mygamecompany.com/images/banners/eternaleden.jpg";
   images[5] = "http://www.mygamecompany.com/images/banners/farmscapes468x60.jpg";
   images[6] = "http://www.mygamecompany.com/images/banners/fishdom2_468x60.jpg";
   images[7] = "http://www.mygamecompany.com/images/banners/fairway.jpg";
   images[8] = "http://www.mygamecompany.com/images/banners/gratuitousspacebattles.jpg";
   images[9] = "http://www.mygamecompany.com/images/banners/greatinternationalwordsearch.jpg";
   images[10] = "http://www.mygamecompany.com/images/banners/heavyhogur.jpg";
   images[11] = "http://www.mygamecompany.com/images/banners/kittensanctuary.jpg";
   images[12] = "http://www.mygamecompany.com/images/banners/lux1.gif";
   images[13] = "http://www.mygamecompany.com/images/banners/mahjongforests.jpg";
   images[14] = "http://www.mygamecompany.com/images/banners/rainbowweb3.jpg";
   images[15] = "http://www.mygamecompany.com/images/banners/rescueteam.jpg";
   images[16] = "http://www.mygamecompany.com/images/banners/royalenvoy468x60.jpg";
   images[17] = "http://www.mygamecompany.com/images/banners/snowybearadventure.jpg";
   images[18] = "http://www.mygamecompany.com/images/banners/strimko.jpg";
   images[19] = "http://www.mygamecompany.com/images/banners/sunkenwords.jpg";
   images[20] = "http://www.mygamecompany.com/images/banners/threemusketeers2.jpg";
   images[21] = "http://www.mygamecompany.com/images/banners/titanattacks480x60.jpg";
   images[22] = "http://www.mygamecompany.com/images/banners/turtleodyssey.jpg";
   images[23] = "http://www.mygamecompany.com/images/banners/tvmanager2_468x60.gif";
   images[24] = "http://www.mygamecompany.com/images/banners/weddingsalon.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/dawnslight2.htm";
   urls[3] = "http://www.mygamecompany.com/Products/Other/eschalonbook2.htm";
   urls[4] = "http://www.mygamecompany.com/Products/Other/eternaleden.htm";
   urls[5] = "http://www.mygamecompany.com/Products/Other/farmscapes.htm";
   urls[6] = "http://www.mygamecompany.com/Products/Other/fishdom2.htm";
   urls[7] = "http://www.mygamecompany.com/Products/Other/fairway.htm";
   urls[8] = "http://www.mygamecompany.com/Products/Other/gratuitousspacebattles.htm";
   urls[9] = "http://www.mygamecompany.com/Products/Other/greatinternationalwordsearch.htm";
   urls[10] = "http://www.mygamecompany.com/Products/Other/heavyhogur.htm";
   urls[11] = "http://www.mygamecompany.com/Products/Other/kittensanctuary.htm";
   urls[12] = "http://www.mygamecompany.com/Products/Other/luxdeluxe.htm";
   urls[13] = "http://www.mygamecompany.com/Products/Other/mahjongforests.htm";
   urls[14] = "http://www.mygamecompany.com/Products/Other/rainbowweb3.htm";
   urls[15] = "http://www.mygamecompany.com/Products/Other/rescueteam.htm";
   urls[16] = "http://www.mygamecompany.com/Products/Other/royalenvoy.htm";
   urls[17] = "http://www.mygamecompany.com/Products/Other/snowythebear.htm";
   urls[18] = "http://www.mygamecompany.com/Products/Other/strimko.htm";
   urls[19] = "http://www.mygamecompany.com/Products/Other/sunkenwords.htm";
   urls[20] = "http://www.mygamecompany.com/Products/Other/threemusketeers.htm";
   urls[21] = "http://www.mygamecompany.com/Products/Other/titanattacks.htm";
   urls[22] = "http://www.mygamecompany.com/Products/Other/turtleodyssey.htm";
   urls[23] = "http://www.mygamecompany.com/Products/Other/tvmanager2.htm";
   urls[24] = "http://www.mygamecompany.com/Products/Other/weddingsalon.htm";

   count = 25;

   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>");
}

