<!-- Begin
    function blinkit(){
    intrvl=0;
    for(nTimes=0;nTimes<500;nTimes++){
    intrvl += 500;
    setTimeout("document.getElementById('blink').style.backgroundColorr='#81b6a6';",intrvl);
    intrvl += 500;
    setTimeout("document.getElementById('blink').style.backgroundColor='red';",intrvl);
    intrvl += 500;
    setTimeout("document.getElementById('blink').style.backgroundColor='yellow';",intrvl);
    intrvl += 500;
    setTimeout("document.getElementById('blink').style.backgroundColor='orange';",intrvl);
    intrvl += 500;
    setTimeout("document.getElementById('blink').style.backgroundColor='#81b6a6';",intrvl);
    }
    }
    // End -->
