Dans une définition de fonction est-il possible d'appeler une fonction ?

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function showit($which)
{
clear_delayhide()
thecontent=($which==-1)? "" : submenu[$which]
if (document.getElementById||document.all)
{
menuobj.innerHTML=thecontent
}
else if (document.layers)
{
menuobj.document.write(thecontent)
menuobj.document.close()
}
}
Pourquoi ai-je une erreur de syntaxe juste après l'appel de la fonction clear_delayhide()

Merci