function TestoLampeggiante()
{
    var testo = document.getElementById("BLINK");
	
    if (testo.style.color == "blue")
    {
        testo.style.color = "red";
        
		}
    else
    {
        testo.style.color = "blue";
			
    }
		testo = document.getElementById("BLINK1");
    if (testo.style.color == "blue")
    {
        testo.style.color = "red";
        
		}
    else
    {
        testo.style.color = "blue";
			
    }
		
}
