// JavaScript Document
function inicio()
{
    document.oncontextmenu = new Function("return false");
}

function objover(obj,color)
{
	var objeto = document.getElementById(obj); 
	objeto.className=color;  
}
//
function objout(obj,color)
{
	var objeto = document.getElementById(obj); 
	objeto.className=color;  
}
//
function Visible(obj)
{
    var objeto = document.getElementById(obj); 
    if (objeto.style.display == 'none')
	{
    	objeto.style.display = 'block';
    }
	else
	{
    	objeto.style.display = 'none';
    }
}
//
var message="Deshabilitado."; 
function click(e)
{
	if (document.all)
	{
		if (event.button == 2)
		{
			alert(message);
			return false;
		}
	}
}
document.onmousedown=click;
//