Here is what we use to randomly display different banner:
<% 
Randomize
 
intBannerID = Int(rnd * 6)
 
Select case intBannerID
	case 1,2
%>
	<!-- add bannercode here -->
<%	
	case else
%>
	<!-- add bannercode here -->
<%
end select
%>
In this case the second banner is displayed twice as often as the first.
Pierre
Join the Snitz WebRing