function sstop()
{
    alert(1);
    //此出实现停止10秒的函数
    setTimeout('f2()',10*1000);
}
function f2()
{
    alert(2);
}