function blinker1(id1,c11,c21)
{
        elm1 = document.getElementById(id1);
        setTimeout(function() {setInterval(function () {elm1.style.color=c11;},2000);},800);
        setInterval(function () {elm1.style.color=c21;},2000);
}
function blinker2(id2,c12,c22)
{
        elm2 = document.getElementById(id2);
        setTimeout(function() {setInterval(function () {elm2.style.color=c12;},2000);},800);
        setInterval(function () {elm2.style.color=c22;},2000);
}
