Public_html/media/system/mootools-uncompressed.js Код (CODE): /* Script: Json.Remote.js Contains <Json.Remote>. License: MIT-style license. */ /* Class: Json.Remote Wrapped XHR with automated sending and receiving of Javascript Objects in Json Format. Inherits methods, properties, options and events from <XHR>. Arguments: url - the url you want to send your object to. options - see <XHR> options Example: this code will send user information based on name/last name (start code) var jSonRequest = new Json.Remote("http://site.com/tellMeAge.php", {onComplete: function(person){ alert(person.age); //is 25 years alert(person.height); //is 170 cm alert(person.weight); //is 120 kg }}).send({'name': 'John', 'lastName': 'Doe'}); (end) Public_html/media/system/combobox.js // Add iFrame for IE if (this.is_ie) { var iframe = document.createElement('iframe'); iframe.src = 'about:blank'; iframe.scrolling = 'no'; iframe.frameborder = '0'; iframe.style.position = 'absolute'; iframe.style.top = coords.y + 'px'; iframe.style.left = coords.x + 'px'; iframe.style.width = element.offsetWidth + 'px'; iframe.style.height = element.offsetHeight + 'px'; element.parentNode.insertBefore(iframe, element); } },