Auto Change Page Source

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 Change Page</TITLE>
<SCRIPT>
<!--
function autoChange()
{
var timeID = setTimeout("location.href= 'PageName.htm'", 15000)    //15000 is 15000 miliseconds, which means 15 seconds (1 milisecond = 1/1000 second).
//Change PageName.htm to a URL of your choice that you want to Auto Change Page to change to.
}
//-->
</SCRIPT>
</HEAD>
<BODY onload="autoChange()">
</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