function myAjax()
{ 
	var xmlhttp=false;
	try
	{
		// Creacion del objeto AJAX para navegadores no IE
		xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch(e)
	{
		try
		{
			// Creacion del objet AJAX para IE
			xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch(E)
		{
			if (!xmlhttp && typeof XMLHttpRequest!='undefined') xmlhttp=new XMLHttpRequest();
		}
	}
	return xmlhttp; 
}

function asignatura(id){
		//creamos  objeto ajax 
		var contenedor=document.getElementById("menu_izq");
		var ajax=myAjax();

		ajax.open("GET",  "../includes/inc_menu_izq_ajax.php?id="+id, true);
		ajax.onreadystatechange=function() 
		{ 
			if (ajax.readyState==1) {
            	contenedor.innerHTML="Cargando.......";
         	}
         	else if (ajax.readyState==4){
                   if(ajax.status==200){
                      contenedor.innerHTML=ajax.responseText;
                   }
                   else if(ajax.status==404)
                                             {

                            contenedor.innerHTML = "La direccion no existe";
                                             }
                                             else
                                             {
                            contenedor.innerHTML = "Error: "+ajax.status;
                                             }
           }                  
		}
		ajax.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
		ajax.send(null);
}
