﻿function ErroreGenerico(strMessaggio) {
        alert("Errore! " + strMessaggio);
}
function Warning(strMessaggio) {
        alert("Attenzione! " + strMessaggio);
    }
function MessaggioGenerico(strMessaggio) {
        alert(strMessaggio);
    }
function NewTextWindow(strurl, x, y) {
    strmode = 'scrollbars=yes,width=' + x + ',height=' + y
    window.open(strurl, '', strmode)
} 
