/*
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://classiclegendbooks.com/astrologykarmicastrologybooks1.htm"
    }

window.status=countdown + " seconds left to view this page."
setTimeout('doCount()',1000)
}

doCount()


