function TestoLampeggiante1()
{
    var testo = document.getElementById("lampeggia1");
    if (testo.style.color == "#000066")
    {
        testo.style.color = "#FF0000";
    }
    else
    {
        testo.style.color = "#000066";
    }
}
window.setInterval("TestoLampeggiante1()", 1000);

function TestoLampeggiante2()
{
    var testo = document.getElementById("lampeggia2");
    if (testo.style.color == "red")
    {
        testo.style.color = "#000066";
    }
    else
    {
        testo.style.color = "red";
    }
}
window.setInterval("TestoLampeggiante2()", 1000);