| 
				проблема с фоксом
			 есть код:
 function startdrag() {
 // функция срабатывает во всех браузерах, в том числе и в мозиле
 if(navigator.appName == 'Microsoft Internet Explorer'){x = window.event.clientX-50;}
 if(navigator.appName == 'netscape'){
 //срабатывает в мозиле
 x = event.clientX-50;
 document.addEventListener("mousemove", dragGo,   true);
 document.addEventListener("mouseup",   dragStop, true);
 event.preventDefault();
 }
 if(window.opera){x = window.event.clientX-50;}
 scrl_x=parseInt(document.getElementById("scrl").st  yle.left)-50;
 
 if (navigator.appName == 'Microsoft Internet Explorer') {
 document.attachEvent("onmousemove", dragGo);
 document.attachEvent("onmouseup",   dragStop);
 window.event.cancelBubble = true;
 window.event.returnValue = false;
 }
 if (window.opera) {
 document.attachEvent("onmousemove", dragGo);
 document.attachEvent("onmouseup",   dragStop);
 window.event.cancelBubble = true;
 window.event.returnValue = false;
 }
 function dragGo(){
 //все браузеры заходят в функцию, а мозила нет, в чем беда?
 ...
 }
 |