These days I was struggling with this problem: I needed to scroll the page (using javascript) to the embeded swf object. After some search and tests I used the following function (found here) to find the Y position of the object.
function findPosY(obj) {
var curtop = 0;
if(obj.offsetParent)
[...]