//****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='230' height='300'><tr><td>");
document.write("<br><center><img src='images/public_safety.jpg' width='186' height='39' alt='Public Safety Bulletins'><hr width='200' size='1' color='#000000'>");
document.write("<iframe src='Scripts/blank.html' name='the_article' frameborder='0' width='230' height='300' align='top'></iframe>");
document.write("<br><hr width='200' size='1' color='#000000'><center><font color='#000000' size='1' face='verdana, arial, helvetica'>Copyright Notice: \"Public Safety Announcement\" articles published <br>within are © Copyright 2008-2010 aperfectpicklocksmiths.com and <br>may not be reproduced in whole or <br>part without express written consent</center><br>");
document.write("</font></tr></td></table>");

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

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