<!--
/*
No rightclick script v.2.5
(c) 1998 barts1000
barts1000@aol.com
Don't delete this header!
*/

var message="RTSea Copyright Production."; 

// Don't edit below!

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// --> 

</script>
<script language=JavaScript>
<!--


var message="RTSea Copyright Production";
function clickIE() 
{
    if (document.all) 
        {
            alert("RTSea Copyright Production");
            return false;
        }
}
function clickNS(e) 
    {
        if 
            (document.layers||(document.getElementById&&!document.all)) 
    {
        if (e.which==2||e.which==3) 
            {
                alert("RTSea Copyright Production.");
                return false;
            }
    }
}
if (document.layers) 
{
   
    document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;
     alert("RTSea Copyright Production");
}
    else
    {
      
        document.onmouseup=clickNS;document.oncontextmenu=clickIE;
    }

document.oncontextmenu=new Function("return false")
// --> 
// JavaScript Document