<!--
//Javascript created by Michael Becker, Jumping Jack Web.  http://www.jumpingjackweb.com/
//Please if you decide to use this script, give me credit.  I would like to thank Joe Burns for his wonderful Javascript book and for his great site http://www.htmlgoodies.com/
RightNow = new Date();

StartPoint = (RightNow.getTime() + (11 * 1000));



function StartTheCount() 

{ 

 var RightNow2 = new Date(); 

        var CurrentTime = RightNow2.getTime();  

        var timeDifference = StartPoint - CurrentTime; 

        this.DifferenceInSeconds = timeDifference/1000; 

        return(this.DifferenceInSeconds); 

} 



function TheSeconds() 

{ 

        var SecCounts = StartTheCount(); 

        var SecCounts1 = " "+SecCounts; 

        SecCounts1= /*<a href=/"home.html/">*/"Main Page" /*</a> */ + " will load in " + SecCounts1.substring(0,SecCounts1.indexOf(".")); 

if (DifferenceInSeconds < 1)
 {
 	window.location.href="home.html";
 }
else
{
        document.FormCount.CountBox.value = SecCounts1 

      window.setTimeout('TheSeconds()',1000);}


}
-->
