//Created 11/20/01 Kenneth Fly http://hsc.usf.edu/~kfly
//This function is used to preload images into a browser
//during loading so that that they may be used in the 
//future speedy image changes or dynamic effects. The
//function accepts one variable which is a comma
//delimited string of all the URL's (full or partial)
//that need to be preloaded. The function does not
//return any values. 
function preloadimages(imagesstring){
 var imagesarray;
 var count;
 imagesarray=imagesstring.split ("casino_001.jpg","background="casino_001.jpg","backgr10.jpg","flag_euro_currency.gif","flag_multi_countries.gif","flag_multilingual.gif","flag_russian_36x18.gif","flag_sa.gif","BritishCasinos_topback.gif","http://www.captaincookspoker.com/AffBanners/125x125_Banner5.gif","http://affiliate.casinorewards.com/members/affiliate/banner_site/images/gt_poker/gtp_125125_220403.gif","http://affiliate.casinorewards.com/members/affiliate/banner_site/images/vcp/vcp_125125_211003b.gif","http://www.ClickedyClick.com/ads/gcp/gcp_125x125_040.gif","paradisepoker_234x60.bmp","http://www.ClickedyClick.com/ads/gcp/gcp_120x060_025.gif","http://www.ads365.com/creative/234x60/2004/234x60__freeroll.gif","planetpoker_25x125signup.gif","gaming_club_poker_125x125.gif","PartyPoker_125_125_2.gif","PartyPoker_125x100bonus100girl.gif","gaming_club_poker_125x125.gif","http://www.captaincookspoker.com/AffBanners/125x125_Banner1.gif","pp120_600_6.gif","http://www.UPlayPoker.com/marketing_tools/banners/uplaypoker120x600_2.gif","http://www.islandpoker.com/affiliate/banner/120x600/04_120x600.gif","http://www.ads365.com/creative/160x600/2004/160x600__us_generic.gif","noblepoker_120x600.gif","http://adservercentral.com/bannerserver/banserv.asp?btag=BanAff17961.pom_sky160x600_01","http://www.islandpoker.com/affiliate/banner/468x60/05_468x60.gif","http://gateway.fortunelounge.net/copy/cpc/banners/cpc2_468_60_3_player.gif","http://www.paradisepoker.com/banners/banner1.gif","pp468x6025bonusgirl2.gif","poker_room_gameView.gif","http://www.captaincookspoker.com/AffBanners/468x60_Banner3.gif","http://ads.intercasino.com/partnerlogic/banners/01142.gif","http://service.bfast.com/bfast/serve?bfmid=37923489&amp;siteid=40377793&amp;bfpage=468x60&amp;bfxid=905316","focalimage_468x60.gif","http://affiliate.casinorewards.com/members/affiliate/banner_site/images/gt_poker/gtp_46860_271003_v2.gif","royalflush.gif","straightflush.gif","fourofakind.gif","fullhouse.gif","http://www.wagershare.com/jvdownload/banners/wagershare/wgs_455.gif","poker_game_btn_downloadw.gif","http://gateway.fortunelounge.com/copy/rvp/banners/Rvp_120_600_affiliate4.gif","http://gateway.fortunelounge.com/copy/7sp/banners/7Sp_120_600_190_3.gif","PlanetPoker_skyscraper-free.gif","pp120_600_6.gif");

 
 for(count=0;count<imagesarray.length;count++){
 newimage=new Image();
 newimage.src=imagesarray[count];
 }
} 