Auto Change Page Source II

Have you ever been to a page where they say "You will be automatically transfered to the new address of this page"?  Well, this is how they do it.  It's pretty easy to do, though useful.
 
 

Cut and paste the source code of the above script here (Read  How to Cut N Paste for help)
 

<!----------Cut---------->
<HTML>
<HEAD>
   <TITLE>Auto Reload</TITLE>
<SCRIPT>
<!--
//    Script Editor:   Howard Chen
//    Browser Compatible for this script: IE 2.0 or Higher
//                                        Netscape 2.0 or Higher
//    Get more JavaScripts at http://members.xoom.com/7432/
//    Bug report to hchen007@geocities.com
//    This script is free as long as you keep its credits
var second = 15        // The default seconds until changing page
function autoChange()
{
if(second == 0){
        location.href = "ACSource2.htm"
        return true
        }
window.status = second + " seconds till departure..."
second--
setTimeout("autoChange()", 1000)
}

//-->
</SCRIPT>
</HEAD>
<BODY onload="autoChange()" bgcolor="#FFFFFF">
</BODY>
</HTML>

<!-----------End----------->
IMPORTANT: The scripts provided in this page are free as long as you keep the credits in the code.  E-mail me or use Script Rebuild Service for additional help about Cut N Paste or to ask for a script that is just for you.

Post Your Script Home