<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Ben (BassClar89@aol.com) -->

var g_iCount = new Number();
// CHANGE THE COUNTDOWN NUMBER HERE - ADD ONE TO IT //
var g_iCount = 11;
function startCountdown()
    {
    if((g_iCount - 1) >= 0)
	    {
        g_iCount = g_iCount - 1;
        numberCountdown.innerText = g_iCount;
        setTimeout('startCountdown()',1000);
        }
    }

