al momento non sono in grado di testare le varie combinazioni browser/dtd
ma cambiare questo
codice:
function MoveArea(x,y){ 
    this.x=x;this.y=y
    this.css.left=this.x 
    this.css.top=this.y
}
in questo
codice:
function MoveArea(x,y){ 
    this.x=x;this.y=y
    this.css.left=this.x+((bw.dom)?'px':''); 
    this.css.top=this.y+((bw.dom)?'px':'');
}
lo fa funzionare anche in mozilla e IE6 con DTD strict
ciao