// JavaScript Document
	function Ajax()
	{
		var xmlhttp = false;
		try{
			xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		}catch(e){
			try{
				xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
			}catch(E){
				xmlhttp = false;
			}
		}
			if(!xmlhttp && typeof XMLHttpRequest!='undefined')
		{
			xmlhttp = new XMLHttpRequest();
		}
		return xmlhttp;
	}
		
	function generaContenido(str)
	{
		
		var cargador = document.getElementById('cargador');
		var ajax = Ajax();		
		
		switch(str)
		{
			case 'Ubicacel':
				ajax.open('GET','intro.php',true);
				ajax.onreadystatechange = function()
				{
					if(ajax.readyState==4)
					{
						cargador.innerHTML = ajax.responseText;
					}
				}
				ajax.send(null);			
			break;
			default:
				ajax.open('GET','intro.php',true);
				ajax.onreadystatechange = function()
				{
					if(ajax.readyState==4)
					{
						cargador.innerHTML = ajax.responseText;
					}
				}
				ajax.send(null);				
			break;
		}
	}	

	function getEstado(str)
	{
		var cargador = document.getElementById('cobertura');
		var ajax = Ajax();
		ajax.open('POST','coberturaBAM.php',true);
		ajax.onreadystatechange = function()
		{
			if(ajax.readyState==4)
			{
				cargador.innerHTML = ajax.responseText;
			}
		}
		ajax.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
		ajax.send("Estado="+str);

	}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////PopUps
	function video1()
	{
		TB_show('titulo','popups/popup_entrenador_comosecompra.html?keepThis=true&TB_iframe=true&height=585&width=745');
	}	
	
	function video2()
	{
		TB_show('titulo','popups/popup_entrenador_entrarycomenzar.html?keepThis=true&TB_iframe=true&height=410&width=460');
	}
	
	function video3()
	{
		TB_show('titulo','popups/popup_entrenador_revisaresultados.html?keepThis=true&TB_iframe=true&height=410&width=460');
	}

	function video4()
	{
		TB_show('titulo','popups/popup_entrenador_miinfo.html?keepThis=true&TB_iframe=true&height=410&width=460');
	}

	function video5()
	{
		TB_show('titulo','popups/popup_entrenador_configuracion.html?keepThis=true&TB_iframe=true&height=410&width=460');
	}