﻿var ns4 = (navigator.appName == 'Netscape' && parseInt(navigator.appVersion) == 4)
if (ns4)
{
    document.captureEvents(Event.MOUSE);
}

document.onmousedown   = function() { return false; }
document.oncontextmenu = function() { return false; }
