foxler
Regular Member
- Mar 7, 2008
- 279
- 163
Just curios as to why you went to great lengths to encode this script? It's whats causing the av's to go off and could easily be seen anyways.
Code:
function hp_mu(e) {
if (e.which == 1) {
window.releaseEvents(Event.MOUSEMOVE);
window.onmousemove = null;
}
}
if (navigator.appName.indexOf("Internet Explorer") == -1 ||
(navigator.userAgent.indexOf("MSIE") != -1 &&
document.all.length != 0)) {
if (document.all) {
document.onselectstart = hp_dn;
} else if (document.layers) {
window.captureEvents(Event.MOUSEUP | Event.MOUSEDOWN);
window.onmousedown = hp_md;
window.onmouseup = hp_mu;
} else if (document.getElementById && !document.all) {
document.onmousedown = hp_de;
}
}
Last edited: