ciao, secondo voi dov'è l' errore che i restituisce undefined nell' alert?
<script type="text/javascript" language="JavaScript">
<!--
function vedo(){
document.getElementById('livello').style.top='400p x';
document.getElementById('livello').style.left='126 px';
document.getElementById("livello").style.visibilit y='visible';
alert(document.getElementById("livello").style.lef t.value);
}
function nascondi(){
document.getElementById("livello").style.visibilit y='hidden';
}
if(document.layers) document.captureEvents(Event.CLICK);
document.onmousedown=vedo;
</script>
<body onload="nascondi()">
<div id="livello" style="background-colorrange; width:100px; height:100px; left:200px"></div>
</body>
grazie