Or if not, the following will get the position of any object anywhere on the page, nested in any number of other objects.
This is taken straight from the DHTML menu I posted earlier.
var cNode = document.getElementById('...');
var l = 0;
var t = 0;
while(cNode.tagName!='BODY'){
l+=cNode.offsetLeft;
t+=cNode.offsetTop;
cNode=cNode.offsetParent;
}
}
----------
I'm willing to trade custom scripts for... [see profile]