﻿// -->

function click() 
{
if (event.button==2) 
{
alert('Amigo internauta: estamos felizes com a sua visita! Desejamos amor e sucesso! Copyright-1998/2010.')
}
if (event.button == 3)

{

window.alert('Amigo internauta: estamos felizes com a sua visita! Desejamos amor e sucesso! Copyright-1998/2010.');

}

}
document.onmousedown=click

// -->

function disableselect(e){return false;} document.onselectstart=new Function ("return false"); 

if (window.sidebar){document.onmousedown=disableselect;document.onclick=reEnable;}
 
 
 // -->

function keypresed() 
{
alert('return false');
}
document.onkeydown=keypresed;
document.onmousedown=click;
document.oncontextmenu=new Function("return false")
document.ondragstart=new Function("return false")
document.onselectstart=new Function("return false")
document.onkeydown=new Function("return false")
document.onmousedown=new Function("return false")

// -->

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}



// -->







