﻿function playFlash()
{
    var flashPlay=document.getElementById("greenpledge");  
    if(flashPlay!=null)
    {
        flashPlay.style.backgroundColor="#000";
    }
    else
    {
         window.setTimeout(playFlash,500);
    }
}

playFlash();