DarkElf, а исходник мы сами должны были найти по названиям функций? Код (Text): function get_mouse_x(current_event) { // Is this Internet Explorer 4 or later? if (its_ie4plus) { // If so, return the event.clientX property return event.clientX } // Is this Netscape Explorer 4 or later? else if (its_ns4plus) { // Otherwise, return the pageX property return current_event.pageX } else { // Otherwise, return null return null } } function get_mouse_y(current_event) { // Is this Internet Explorer 4 or later? if (its_ie4plus) { // If so, return the event.clientY property return event.clientY } // Is this Netscape Explorer 4 or later? else if (its_ns4plus) { // If so, return the pageY property return current_event.pageY } else { // Otherwise, return null return null } }