codice:
<!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>
    <title>Pagina senza titolo</title>
<script language="javascript" type="text/javascript">
// <!CDATA[

function Button1_onclick() 
{
    call("pippo");
}

function call(a)
{
    var i = window.setTimeout("animazione(" + "\"" + a + "\" )", 1);  
    //var i = window.setTimeout(function(){animazione(a);}, 1);  
}


function animazione(ab)
{
    alert(ab);
}


// ]]>
</script>
</head>
<body>
    <input id="Button1" type="button" value="button" onclick="return Button1_onclick()" />
</body>
</html>
L'ho provato con IE7, Firefox3 e Opera 9.5, e va. A me basta.