I'm putting some paid ads on my site and I would like the order of them to randomize each page load. I've googled this off and on for a few days and can't seem to find anything.
I found a code that will select from a group and randomly select one to display which I made work for now...
<%
RANDOMIZE
LowestNumber = 1
HighestNumber = 4
RandomNumber = INT((HighestNumber-LowestNumber+1)*Rnd+LowestNumber)
%>
<%
RANDOMIZE
LowestNumber = 1
HighestNumber = 4
RandomNumber = INT((HighestNumber-LowestNumber+1)*Rnd+LowestNumber)
SELECT CASE RandomNumber
CASE "1"%>
<!--#include virtual="/includes_menu/inc_tla_rotate1.asp" -->
<%CASE "2"%>
<!--#include virtual="/includes_menu/inc_tla_rotate2.asp" -->
<%CASE "3"%>
<!--#include virtual="/includes_menu/inc_tla_rotate3.asp" -->
<%CASE "4"%>
<!--#include virtual="/includes_menu/inc_tla_rotate4.asp" -->
<%END SELECT%>
In each of the includes I have all 4 ads set up with a different one on top, so it works, but seems like well, the long way. 
Is there some easy way to put the 4 ads in the same file and have them all display, but in a random order each time? So I can do away with all the includes?
I hope I explained that well enough. 
Thanks for any help in advance. 