function TestoLampeggiante()
{
    var testo = document.getElementById('blink');
    if (testo.style.color == "#000000")
    {
        testo.style.color = "#ff0000";
    }
    else
    {
        testo.style.color = "#000000";
    }
}
window.setInterval('TestoLampeggiante()', 1000);

