var count = 0;
var timeID;
function timeCount()
{
document.getElementByIdx('timetxt').value = count;
count++;
}
function beginCount()
{
timeID = setInterval("timeCount()",1000);
}
function stopCount()
{
clearInterval(timeID);
}
var timeID;
function timeCount()
{
document.getElementByIdx('timetxt').value = count;
count++;
}
function beginCount()
{
timeID = setInterval("timeCount()",1000);
}
function stopCount()
{
clearInterval(timeID);
}