<%
Function RandomRs(Table_Navn,Post_Navn)
Dim strSQL, Table_Navn, CountRs, Conn, AntalRs, CountRs, IdNr, RandRs
' Tæl antal poster
   strSQL = "Select * From " & Table_Navn & ""
   Set CountRs = Conn.Execute(strSQL)
      ' Loop det Rs ud og tæller på den måde...
      ' Ved ikke lige om count virker til acc.
      DO Until CountRs.EOF    
         AntalRs = AntalRs + 1
        CountRs.MoveNext
      Loop
      
         ' Tager et random id fra database ved at * antal med det
         ' men funktion Rnd
         ' (mere info 
http://www.devguru.com/technologies/vbscript/quickref/rnd.html)
         Randomize
           IdNr = Int(Rnd * AntalRs) + 1
   strSQL = "Select * From " & Table_Navn & " Where id = " & IdNr-1 & ""
   Set RandRs = Conn.Execute(strSQL)
   
     RandomRs = RandRs(Post_Navn)
End Function
Response.Write(RandomRs("Quote","Quote"))
%>
Det skulle virke =)