//conferma cancellazione 
function tmt_confirm(msg){
	document.MM_returnValue=(confirm(unescape(msg)));
}

// data
var isnMonths=new Array("Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre");
var isnDays= new Array("domenica","lunedì","martedì","mercoledì","giovedì","venerdì","sabato");
today=new Date();


function finestra_msg(str) {
	var width="530", height="380";
	var left = (screen.width/2) - width/2;
	var top = (screen.height/2) - height/2;
	var styleStr = 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
	var finestra = window.open(str,'nuova',styleStr); 
}

function disableRightClick(e){
  var message ="Funzione disabilitata";
  // initialize
  if(!document.rightClickDisabled) {
    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;
  }
}

//disableRightClick();