function disableRightClick(e)
{
  var message = "INGIUSTA.it ~ Ogni Immagine e Contenuto sono esclusiva proprietà di ArteTempo&reg;";
  
  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)
    {
      alert(message);
      return false;
    }
  }
  else
  {
    alert(message);
    return false;
  }
}



function PopUp(h, Hi, Wi, Scroll) {
    w = window.open(h, "ArteTempo", "menubar=0, scrollbars=" + Scroll + ", resizable=1, width=" + Wi + ", height=" + Hi + ", left=50, top=50");
    if ( w.opener == null )
        w.opener = self;
		w.document.title = "ArteTempo® ~ Immagine e Creatività";
		w.document.bgColor = "#000000";
    w.focus();
}



function Properties() {

  disableRightClick();
  self.status = " [ Ingiusta.it ~ Soluzioni legali contro le ingiustizie quotidiane ]";

}
