//****YOU MAY NOT REMOVE THIS HEADER*****************DO NOT REMOVE*******************************
//Written Article Rotater written by John Farquharson Completed Fri Jan 12 2007 @ 10:43 PM EDST.*
//This script is Copyright John Farquharson MMVII (2007) Author continues to hold all right to  *
//ownership of this script. Script May Not Be Used Without My Express Written Permission        *
//****YOU MAY NOT REMOVE THIS HEADER*****************DO NOT REMOVE*******************************

document.write("<table border='0' cellpadding='0' cellspacing='0' width='180' height='159'><tr><td>");
document.write("<form name='my_form' action=''><p align='center'><iframe src='' name='the_article' frameborder='0' width='178' height='159' style='background:#FFFFFF'></iframe></form></tr></table>");


var my_articles = [ "Scripts/article_0001.html", "Scripts/article_0002.html", "Scripts/article_0003.html", "Scripts/article_0004.html", "Scripts/article_0005.html" ];
var random_number = Math.floor(Math.random() *5);

function doCalc(){
     if (random_number > my_articles.length)
     {
     random_number = Math.floor(Math.random() *5)
     }
     if (random_number <= my_articles.length)
     {
the_article.location = my_articles[random_number];
the_article.style = 'border:none';}
}doCalc();
