var count=0;
var tid;
function startTimer(pstrTime){
    Timer(pstrTime);
}

function Timer(pstrTime){
    timeSpent(pstrTime);
}

function timeSpent(pstrTime){

	var intTimerCnt;

    pstrTime = parseInt(pstrTime)+1;

	
	if (pstrTime == "9")
	{
		pstrTime = "1";
	}
    tid = setTimeout("timeSpent('"+pstrTime+"')",2000)

	show_booklineupdown('up');
}

function StopTimer(){
    clearTimeout(tid);
}

