function countDown() {
	/*var Tiempo = new Date();
//Incluir Aqui La Fecha Límite
	var Limite = Date.UTC(2011, 10, 26, 12);
	Diferencia = Limite - Tiempo.getTime();
	var Final = new Date(Diferencia);
	//Final.getMonth()
	if (Diferencia>=2505600) {
		document.getElementById("cuentaAtras").innerHTML="<a href='certificacion.html'>Faltan "+Final.getDate() + " dias, "+Final.getHours()+" horas, "+Final.getMinutes()+" minutos y "+Final.getSeconds()+" segundos para el inicio de la convocatoria.</a>";
		timer = setTimeout("countDown()", 1000);
	}
	else {*/
	
	
	
		var nodo = document.getElementById("cuentaAtras");   
		nodo.parentNode.removeChild(nodo);
		
		
		
		
	/*	document.getElementById("cuentaAtras").style.display = "none";
		//document.getElementById("cuentaAtras").innerHTML='<a href="certificacion.html">Primer Programa Formativo en &quot;Experto en Coaching&quot;</a>';
	}
	//document.getElementById("cuentaAtras").style.display = "none";*/
}
