/************************************************************************/
/* Ä£ÇÑÄ£±¸(7179.com)                                                   */
/************************************************************************/
<!--
var running = false
var endTime = null
var timerID = null

function startTimer() {
        running = true
        now = new Date()
        now = now.getTime()
        endTime = now + (1200000)
        showCountDown()
}

function showCountDown() {
        var now = new Date()
        now = now.getTime()
        if (endTime - now <= 0) {
                stopTimer()
	        } else {
                var delta = new Date(endTime - now)
                var theMin = delta.getMinutes()
                var theSec = delta.getSeconds()
                var theTime = theMin
                theTime += ((theSec < 10) ? ":0" : ":") + theSec
	window.status = "Time left: "+theTime
                if (running) {
                        timerID = setTimeout("showCountDown()",1000)
                }
        }
}

function stopTimer() {
        clearTimeout(timerID)
        running = false
        window.status = "Time is up"

	r(iq);

}

//-->