Hope the following coding snippet helps to know how :
<script>
testFCall();
function testFCall()
{
setTimeout('testCall(109)',0);
}
function testCall(val)
{
alert('val : '+val);
}
<script>