﻿var msg;
function tDrop(source, arguments) {
    //alert(arguments.Value);
    arguments.IsValid = arguments.Value != 'NN';
}
function seleziona(nomescheda, nomeContenitore) {
    pulisciTabs(nomeContenitore);
    var tab = document.getElementById(nomescheda + '_tab');
    var scheda = document.getElementById(nomescheda + '_scheda');
    tab.className = 'tabSelected';
    scheda.className = 'contentSelected'
    
}

function pulisciTabs(nomeContenitore) {
    var contenitore = document.getElementById(nomeContenitore);
    var elementi = contenitore.getElementsByTagName('div');
    for (var i = 0; i < elementi.length; i++) {
        if (elementi[i].id.indexOf('_tab') != -1)
            elementi[i].className = '';
        if (elementi[i].id.indexOf('_scheda') != -1)
            elementi[i].className = 'invisibile';
    }
}

function Privacy() {
    var v = '/Privacy.aspx';
    var n = 'Privacy';
    var wh = 640;
    var hh = 480;
    var w_l = (screen.width - wh) / 2;
    var w_t = (screen.height - hh) / 2;
    var sFeatures = 'top=' + w_t + ',left=' + w_l + ',width=' + wh + ',height=' + hh + ',scrollbars=yes,resizable=yes';
    w = window.open(v, n, sFeatures);
}

function cambio(elemento, valore) {

    if (elemento.src.indexOf(valore) == -1) {
        var pos = elemento.src.lastIndexOf('.');
        elemento.src = elemento.src.substring(0, pos) + valore + elemento.src.substring(pos);
    }
    else
    { elemento.src = elemento.src.replace(valore, ''); }

    //alert(elemento.src);
}



function Meteo() {
    var v = 'http://www.trebimeteo.com';
    var n = 'Privacy';
    var wh = 640;
    var hh = 480;
    var w_l = (screen.width - wh) / 2;
    var w_t = (screen.height - hh) / 2;
    var sFeatures = 'top=' + w_t + ',left=' + w_l + ',width=' + wh + ',height=' + hh + ',scrollbars=yes,resizable=yes';
    w = window.open(v, n, sFeatures);
}
function messaggio() {
    if (msg != '' && msg != null)
        alert(msg);
}
function PrimaPaginaGiornale_onmouseover() {
    document.all['ScaricaGiornale'].style.visibility = 'visible';
}

function PrimaPaginaGiornale_onmouseout() {
    document.all['ScaricaGiornale'].style.visibility = 'hidden';
}
function Giornale(Edizione) {
    var v = '/Uscite/' + Edizione + '/Corrente.pdf';
    var n = 'Quotidiano';
    var wh = 640;
    var hh = 480;
    var w_l = (screen.width - wh) / 2;
    var w_t = (screen.height - hh) / 2;
    var sFeatures = 'top=' + w_t + ',left=' + w_l + ',width=' + wh + ',height=' + hh + ',scrollbars=yes,resizable=yes';
    w = window.open(v, n, sFeatures);
}
function GiornalePrecedente(Data) {
    var v = '/Oggi.aspx?Giorno=' + Data;
    var n = 'Quotidiano';
    var wh = 800;
    var hh = 600;
    var w_l = (screen.width - wh) / 2;
    var w_t = (screen.height - hh) / 2;
    var sFeatures = 'top=' + w_t + ',left=' + w_l + ',width=' + wh + ',height=' + hh + ',scrollbars=yes,resizable=yes';
    w = window.open(v, n, sFeatures);
}
