--- webfm.js	2010-03-10 15:49:00.000000000 -0500
+++ webfmFix.js	2010-06-24 10:02:05.306913177 -0400
@@ -4096,5 +4096,12 @@ Drupal.deleteIframe = function () {
  *  Returns the position of the mouse cursor based on the event object passed
  */
 Drupal.mousePosition = function(e) {
-  return { x: e.clientX + document.documentElement.scrollLeft, y: e.clientY + document.documentElement.scrollTop };
+  if (Webfm.browser.isIE)
+  {
+    return { x: e.clientX + document.documentElement.scrollLeft, y: e.clientY + document.documentElement.scrollTop };
+  }
+  else
+  {
+    return { x: e.pageX, y: e.pageY };
+  }
 };
