function random_text()
{};
var random_text = new random_text();
// Set the number of text strings to zero to start
var number = 0;
// Incremental list of all possible Text
random_text[number++] = "<h1><strong>The Hidden Planet</strong><br>The Doctor Ian and Barbara land on a planet ruled by women, with Barbara's doppleganger as their leader<font size='1'><a href='hart.htm#hiddenplanet'><strong>(more...)</strong></a></h1>"
random_text[number++] = "<h1><strong>The Daleks</strong><br>By John Leeky<br><br>Genesis of the Daleks, but not as you know it! Featuring the Eighth Doctor and the Master and a race to prevent the creation of the most terrifying creatures in the galaxy!<a href='mcg.htm#daleks'> <font size='1'><strong>(more...)</strong></font></a></h1>"
random_text[number++] = "<h1><strong>The Pirates</strong><br>Is Blackbeard the Pirate Doctor's long lost father Ulysees? The Doctor thinks so <a href='mcg.htm#pirates'><strong>(more...)</strong></a></h1>"
random_text[number++] = "<h1><strong>Song of the Space Whale</strong><br>Mills and Wagner from DWW's Johnaesqe epic <a href='mcg.htm'><strong>(more...)</strong></a></h1>"
random_text[number++] = "<h1><strong>Alixion</strong><br><br>An order of monks living on the Planet Alixion are being picked off one by one.  What is the secret to their intellegence inhancing elixir?<a href='mcc.htm#alixion'><strong>(more...)</strong></a></h1>"
random_text[number++] = "<h1><strong>The Nightmare Fair</strong><br> The Celestial Toymaker returns once again to do battle with the Sixth Doctor in Blackpool<a href='mcc.htm#alixion'><strong>(more...)</strong></a></h1>"
random_text[number++] = "<h1><strong>Doctor Who Meets Scratchman</strong><br>The Fourth Doctor battles the Devil himself and his band of evil scarecrows in the 3rd Doctor Who movie <a href='bak.htm#scratchman'><strong>(more...)</strong></a></h1>"
random_text[number++] = "<h1><strong>Nothing at the End of the Lane</strong><br><br>Walking home from school one day, Sue encounters a strange old man called the Doctor... <a href='hart.htm#lane'><strong>(more...)</strong></a></h1>"
random_text[number++] = "<h1><strong>Yellow Fever and How to Cure it</strong><br>The Sixth Doctor lands in Singapore only to find Autons, the Master and the Rani waiting for him...<a href='mcg.htm'><strong>(more...)</strong></a></h1>"
random_text[number++] = "<h1><strong>Masters of Luxor</strong><br>The android Great One wants to be human and will stop and nothing, even murder, to achieve it <a href='hart.htm#mastersofluxor'><strong>(more...)</strong></a></h1>"
// Create a random number with limits based on the number
// of possible random text strings
var random_number = Math.floor(Math.random() * number);
// Write out the random text to the browser
document.write(random_text[random_number]);


