var message="www.daminchi.com.ar";

function click(e)
{
  if (document.all)
  {
	if (event.button==2||event.button==3)
	{
	  alert(message);
	  return false;
	}
  }
  else
  {
	if (e.button==2||e.button==3)
	{
	  e.preventDefault();
	  e.stopPropagation();
	  alert(message);
	  return false;
	}
  }
  //if (e.which)
  //{
  //  alert("oops Opera?")
  //}
}

if (document.all) // for IE
{
  document.onmousedown=click;
}
else // for FF or Chrome
{
  document.onclick=click;
}

