// JavaScript Document


document.oncontextmenu=function()  {return false}
document.onselectstart=function() {return false}
document.ondragstart=function() {return false}
document.oncopy=function() {return false}


function doSomething(e)
{
    var code;
    if (!e) var e = window.event;
    if (e.keyCode) code = e.keyCode;
    else if (e.which) code = e.which;
    var character = String.fromCharCode(code);
    alert('Character was ' + character);
}