var afiseaza_continut_din_start = false;
var afiseaza1 = true;
function afiseaza1_cod1(delay)
{
     var ramasa1 = 0;

     if (afiseaza1)
     {

          afiseaza1 = false;
     }

     if (delay>0)
     {
          var d = new Date();
          if (!afiseaza_continut_din_start)
          {
               document.getElementById('asteptare1').style.display = '';
               afiseaza_continut_din_start = d.getTime();
          }
          ramasa1 =  afiseaza_continut_din_start + delay*1000 - d.getTime();  ///modifica timp 1000 = 1 minut
     }
     if (ramasa1<=100)
     {
          document.getElementById('incarca1_continut1').style.display = '';

          if(document.getElementById('asteptare1'))
               document.getElementById('asteptare1').style.display = 'none';

          if(document.getElementById('blocheaza_cod1'))
          {
    
               document.getElementById('blocheaza_cod1').style.display="";
          }
     }
     else
     {
          ramasa1 = ramasa1/1000;
          if(document.getElementById('asteptare1_ramasa1'))
          {
               document.getElementById('asteptare1_ramasa1').innerHTML = Math.round(ramasa1);
          }
          setTimeout('afiseaza1_cod1('+(delay)+')', 1000);
     }
}

