function display( notifier, str ) {
    document.getElementById(notifier).innerHTML = str;
	
  }
	
  function toMinuteAndSecond( x ) {
	astr=x%60;
	kkk=astr.toString();
	if(kkk.length<2)
	astr='0'+astr;
    return Math.floor(x/60) + ":" + astr;
  }
	
  function setTimer( remain, actions ) {
	    (function countdown() {
       display("countdown", toMinuteAndSecond(remain));		
       actions[remain] && actions[remain]();
	   (remain -= 1) >=0 && setTimeout(arguments.callee, 1400);
	   if(remain < 0)
	   {
	   alert("TIME EXPIRED - Enroll now!");
	   }
	   
    })();
  }

  setTimer(299, {
    
  });