// JavaScript Document
function conexion()
{
	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 cargarpresenciales(orden,tipo)//carga los cursos de tipo presencial
{
	g = conexion();
	g.open("GET", "llamaragenda.php?tipocurso=3&orden="+orden+"&tipoorden="+tipo,true);
	g.onreadystatechange=
	function() 
	{
		if (g.readyState==4)
		{
			document.getElementById('tabcursos').innerHTML=g.responseText;
	 	}
	}
	g.send(null);
}

function ordenacurso(orden,tipo)//carga los cursos de tipo presencial
{
	g = conexion();
	g.open("GET", "llamaragenda.php?tipocurso=3&orden="+orden+"&tipoorden="+tipo,true);
	g.onreadystatechange=
	function() 
	{
		if (g.readyState==4)
		{
			document.getElementById('tabcursos').innerHTML=g.responseText;
	 	}
	}
	g.send(null);
}