function noth()
{
    return false;
}
function protec()
{
    var imgs = document.getElementsByTagName("img");
    for(var i=0; i<imgs.length; i++)
        imgs[i].oncontextmenu = noth;
}
