<!--
function right(e) {
        if (document.layers && (e.which==3 || e.which==2))  {
                window.status="NO RIGHT CLICK ALLOWED!"
                return false;
        }
        else if (document.all && (event.button==2 || event.button==3)) {
                window.status="NO RIGHT CLICK ALLOWED!"
                openclosewindow()
                return false;
        }
}

function openclosewindow() {
        var windownews=window.open("", "", "status=no,location=no,toolbar=no,menubar=no,resizable=no,scrollbars=no,width=50,height=50,top=20000,left=200");
        windownews.close()
}
if (document.all) {
        document.onmouseup=right;
        window.onmouseup=right;
}
if (document.layers) {
        document.captureEvents(Event.MOUSEDOWN);
        document.onmousedown=right;
}

function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}

function RemoveDot()
{
for (a in document.links) document.links[a].onfocus = document.links[a].blur;
}
if (document.all)
{
document.onmousedown = RemoveDot;
}

function disableselect(e){
return false
}

function reEnable(){
return true
}

//if IE4+
document.onselectstart=new Function ("return false")

//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}

var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// -->