﻿function pageInit() {
    if (!ApriSito()) {
        document.getElementById("manuale").style.display = "";
    }
}

function ApriSito() {
    var v, w;
    v = v + 'channelmode=1,';
    v = v + 'fullscreen=1,';
    v = v + 'location=0,';
    v = v + 'menubar=0,';
    v = v + 'resizable=0,';
    v = v + 'scrollbars=1,';
    v = v + 'status=0,';
    v = v + 'titlebar=0,';
    v = v + 'toolbar=0';
    w = window.open('default2.aspx', 'NONSOLODONNA', v);
    if (w) {
        w.focus();
    }
    return w;
}

