<!--
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++] = "<table border=0 width=100% height=100% cellspacing=0 cellpadding=0><tr><td width=100% align=center><a href=\"http://click.linksynergy.com/fs-bin/click?id=zIS2y2YZnqM&amp;offerid=63029.10058381&amp;subid=0&amp;type=4\" target=\"new\"><img src=\"http://merchant.linksynergy.com/fs/banners/802/802_10058381.gif\" border=\"0\" no width=\"120\" height=\"600\"></a></td></tr><tr><td width=100% align=center><a href=\"http://click.linksynergy.com/fs-bin/click?id=zIS2y2YZnqM&amp;offerid=50190.10000200&amp;subid=0&amp;type=4\" target=\"new\"><img src=\"http://merchant.linksynergy.com/fs/banners/2043/2043_10000200.gif\" border=\"0\" no width=\"120\" height=\"600\"></a></td></tr></table>"
random_text[number++] = "<table border=0 width=100% height=100% cellspacing=0 cellpadding=0><tr><td width=100% align=center><a href=\"http://click.linksynergy.com/fs-bin/click?id=zIS2y2YZnqM&amp;offerid=57189.10001546&amp;type=4&amp;subid=0\" target=\"new\"><img src=\"http://www.overstock.com/img/linkshare/fitmag_2004b_120x600.gif\" border=\"0\" no width=\"120\" height=\"600\"></a></td></tr><tr><td width=100% align=center><a href=\"http://click.linksynergy.com/fs-bin/click?id=zIS2y2YZnqM&amp;offerid=49929.10000003&amp;subid=0&amp;type=4\" target=\"new\"><img src=\"http://merchant.linksynergy.com/fs/banners/2836/2836_10000003.jpg\" border=\"0\" no width=\"120\" height=\"600\"></a></td></tr></table>"
random_text[number++] = "<table border=0 width=100% height=100% cellspacing=0 cellpadding=0><tr><td width=100% align=center><a href=\"http://click.linksynergy.com/fs-bin/click?id=zIS2y2YZnqM&amp;offerid=50190.10000200&amp;subid=0&amp;type=4\" target=\"new\"><img src=\"http://merchant.linksynergy.com/fs/banners/2043/2043_10000200.gif\" border=\"0\" no width=\"120\" height=\"600\"></a></td></tr><tr><td width=100% align=center><a href=\"http://click.linksynergy.com/fs-bin/click?id=zIS2y2YZnqM&amp;offerid=63029.10000225&amp;subid=0&amp;type=4\" target=\"new\"><img src=\"http://merchant.linksynergy.com/fs/banners/802/802_10000225.gif\" border=\"0\" no width=\"120\" height=\"600\"></a></td></tr></table>"
// 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]);
-->