function TestoLampeggiante()
{
    
    var testo = document.getElementById("BLINK");

	if (testo.style.color== "black")
    {
        testo.style.color = "red";
    }
    else
    {
        testo.style.color = "black";
    }
}
window.setInterval("TestoLampeggiante()", 200);

function TestoLampeggiante1()
{
    var testo = document.getElementById("BLINK1");
   if (testo.style.color== "white")
    {
        testo.style.color = "red";
    }
    else
    {
        testo.style.color = "white";
    }
}
window.setInterval("TestoLampeggiante1()", 300);

function TestoLampeggiante2()
{
    var testo = document.getElementById("BLINK2");
   if (testo.style.color== "white")
    {
        testo.style.color = "red";
    }
    else
    {
        testo.style.color = "white";
    }
}
window.setInterval("TestoLampeggiante2()", 400);

function TestoLampeggiante3()
{
    var testo = document.getElementById("BLINK3");
    if (testo.style.color== "white")
    {
        testo.style.color = "red";
    }
    else
    {
        testo.style.color = "white";
    }
}
window.setInterval("TestoLampeggiante3()", 100);


