grazie ma il problema non é questo. divname é una variabile.

in IE questo codice funziona, in firefox no.
io eseguo lo script cosi: document.onmousemove = follow();

continuando a cercare ho trovato su internet che per farlo funzionare devo implementare la parte "dont (event);" di questo esempio, ma non ho idea di come fare..

codice:
Click here with various mouse buttons to test

<script language="Javascript"> 

function buttonalert(event)
{
    var button;
    if (event.which == null)
       button= (event.button < 2) ? "LEFT" :
                 ((event.button == 4) ? "MIDDLE" : "RIGHT");
    else
       button= (event.which < 2) ? "LEFT" :
                 ((event.which == 2) ? "MIDDLE" : "RIGHT");
    alert(button);
    dont(event);           
}

function dont(event)
{
    if (event.preventDefault)
        event.preventDefault();
    else
        event.returnValue= false;
     return false;           
}
</script>
ma non sono capace.. ho provato ma non funziona.

grazie ancora

ciao

igor