Hi,
The dialog itself does not provide any methods for that. But I believe you can do that by getting the DHTML element of the dialog first, then use its offsetLeft/offsetHeight to get the dialog's position. For example:
Code: JavaScript
var e = document.getElementById("Dialog1");
var left = e.offsetLeft;
var top = e.offsetTop;
You may need to adjust those value according to the marginTop or marginLeft of your document.body.
Thanks