<!--
        var sign; var off0;

        var GTCsec = new Date();
        var offset = GTCsec.getTimezoneOffset();
        if (offset >= -45) sign = "-"; else sign = "+";
        off0 = offset + 45; if (off0 < 0) off0 = -1 * off0;

        var c0 = new Array (" ","B");
        var c1 = new Array ("Q","B","P","V","F","Z","S","D","T","J","C","G","K","Y","X","W");
        var c2 = new Array ("q","b","p","v","f","z","s","d","t","j","c","g","k","y","x","w");

        var chronoID = null; var timerRunning = false;

        function FT_stop() {if(timerRunning); clearTimeout(chronoID); timerRunning=false};
        function FT_start(){FT_stop(); show_it()};

        function show_it(){
            GTCsec = new Date();
        var ms1970 = GTCsec.getTime();
        var Lc_sec = (ms1970 - offset * 60000 ) % 86400000;
        var Lc_hex = Math.floor(Lc_sec / 86400000 * 65536 * 2);
            Lc_hex = ("0000" + (Lc_hex.toString(16)).toUpperCase());
            Lc_hex = Lc_hex.substring(Lc_hex.length-5,Lc_hex.length);

        v0 = Lc_hex.substring(0,1); v1 = Lc_hex.substring(1,2); v2 = Lc_hex.substring(2,3); v3 = Lc_hex.substring(3,4); v4 = Lc_hex.substring(4,5);
        V0 =    parseInt(v0,16);    V1 =    parseInt(v1,16);    V2 =    parseInt(v2,16);    V3 =    parseInt(v3,16);    V4 =    parseInt(v4,16);

        document.form.t.value =  "Your Local Hexadecimal Time is:";
        document.form.l.value =  c0[V0] + c1[V1] + "." + c1[V2] + c1[V3] + "\u2019" + c2[V4] + " H";
        document.form.o.value =  "  Time offset :  UTC of Florence  "+ sign + off0 +" minutes.";

        chronoID = setTimeout("show_it()",41);
        timerRunning = true;
        }
//-->
