Basically, you need to create an html fragment containing the random quote, and then assign that code fragment string to the $INSERT_HTML variable. You'll also need to change the $INSERTION_FRAME_HEIGHT variable to accommodate the height of your displayed quote. Otherwise, it will get cut off. I can't post any specific code, because I don't know how your random quotes are stored and how you plan to retrieve them for insertion into the html fragment. Hope that helps.
OK, here's an example of how to do this with some hardcoded quotes right in the script. First, find this string in the script file: #$INSERT_HTML= "<h1>This is an inserted header</h1><hr>" ; Code (markup): It should be somewhere near line 555. Now we'll add the code to randomly select and display the quote right below the line you just found: my @quotes = ( 'Nothing ventured, nothing gained.', 'I love the <a href="http://forums.digitalpoint.com">DigitalPoint</a> forums!', 'When a programmer gives you an estimate, triple it.' ); my $quote = $quotes[int(rand(@quotes))]; $INSERT_HTML = '<div class="random_quote">' . $quote . '</div><hr />'; Code (markup): That's it. A very simple example. Tested and works. Things are a little different if you want to read the data from a file or change the proxy toolbar code and actually insert the quote into that, or do some fancy CSS formatting on the quote, but this is the basic mechanism. Post back if you have any more questions.