呃,有两个一样的?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
<title>无标题文档 </title> 
<script type="text/javascript"> 
var r=""; 
function sttime(divname,time)//倒计时 

    var now = new Date();
    var start = document.getElementById(divname).start;
    var past = (now.getTime()-start.getTime())/1000;
    var t = parseInt(time-past,10);
    if(t<=0) 
    { 
        document.getElementById(divname).innerHTML = "0";
        return true; 
    } 
    document.getElementById(divname).innerHTML = t;
    r=setTimeout("sttime('"+divname+"',"+time+")",1000); 

      
function clear() 

    clearTimeout(r);  
    r="";  

function ss() 

    document.getElementById('div1').start = new Date();
    sttime('div1',10); 
    document.getElementById('div2').start = new Date();
    sttime('div2',50); 

function dlee() 
{     
    if(confirm("确认删除麽")) 
    { 
    } 
    else 
    { 
    } 

</script> 
</head> 
<body onload="ss()"> 
<table> 
    <tr> 
        <td> 
            <div id="div1"> </div>&nbsp; 
            <div id="div2"> </div> 
            <input type="button" onclick="dlee()" value="one"/> 
            <input type="button" onclick="clear()" value="暂停"/> 
        </td> 
    </tr> 
</table> 
</body> 
</html>