|
Like this (change the brackets to proper brackets):
(SCRIPT)
(!--
function transfer()
{
window.location="http://www.yoursite.com/";
}
setTimeout("transfer();", 5000);
// --)
(/SCRIPT)
This makes it transfer in 5 seconds, or 5000 milliseconds.
You should place a link on the site, as well, for people who can't handle script.
|