Trevor said:
Well, I would have to think about that
Well, I thought about it and here it is.
You can of course delete everything I have put between <body > amd </body>,
so that the visitor is unaware that a redirect will occur.
<html>
<head>
<script type="text/javascript">
// Enter Location here
var newlocn = "
http://tandcl.homemail.com.au"
// Set Specific Date and Time
var myDate = new Date()
myDate.setFullYear(2007,01,13) // 13th February 2007
myDate.setHours(11,58,0,0) // 11:58
function CountDown()
{
// Get the Current Date and Time
var now = new Date()
// Redo if time left to the specific date
if(myDate - now > 0)
timerID = setTimeout("CountDown()", 100)
else
location.href=newlocn
}
window.setTimeout('CountDown()',100);
</script>
</head>
<body>
<b>Redirect </b><br />
You will be redirected to another site at
<script type="text/javascript">
document.write(myDate.toLocaleDateString() + ' ' +
myDate.toLocaleTimeString())
</script><br />
</body>
</html>
--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website:
http://trevorl.mvps.org/
----------------------------------------