// JavaScript Document
var oPopup = window.createPopup();

function ContextMenu(codigo)
{
  available_width=screen.width;
  available_height=screen.height;
  if(codigo>1) {
  oPopupBody = oPopup.document.body;
  oPopupBody.innerHTML = ""; 
  //ePopupBody.outerHTML = "xxxxxxxxx.html"; 
  oPopupBody.background = "assinatura.jpg";
  oPopupBody.style.border = "1 solid #000000";
  oPopupBody.style.fontSize = "10px";
  oPopupBody.style.fontFamily = "Verdana";
  oPopup.show(available_width/2-225,available_height/2-100, 460, 235, 65, document.body);
  }
}

function entrar() {
var w = 10;
var h = 57;
        var px=window.screen.width-w;
        var py=window.screen.height-h;
window.open("site.html","AZulpropaganda","width=" + px + ",height=" + py + ",top=0,left=0,scrollbars=no, location=no, menubar=no, directories=no, resizable=no");
}

function disableRightClick(e)
{
  var message = "Right click disabled";
  
  if(!document.rightClickDisabled) // initialize
  {
    if(document.layers) 
    {
      document.captureEvents(Event.MOUSEDOWN);
      document.onmousedown = disableRightClick;
    }
    else document.oncontextmenu = disableRightClick;
    return document.rightClickDisabled = true;
  }
  if(document.layers || (document.getElementById && !document.all))
  {
    if (e.which==2||e.which==3)
    {
      ContextMenu(2);
      return false;
    }
  }
  else
  {
    ContextMenu(2);
    return false;
  }
}
disableRightClick();

