<!--One step to installing this script-->
<!--1) Insert everything below to BODY of your page-->
<!--Customize the time (90) and dest URL to your own-->
<script language="Javascript">
<!--
//This credit must stay here for use
//For this script, visit java-scripts.net or http://wsabstract.com
var countdown = "90"
function doCount() {
if (countdown > 0) {
countdown--
}
else {
document.location = "http://www.java-scripts.net"
}
window.status=countdown + " seconds left to view this page."
setTimeout('doCount()',1000)
}
doCount()
//-->
</script>
|