function ajax_div(objeto,pagina)
  	{
	var xmlHttp;
  	try
    	{ 
		// Firefox, Opera 8.0+, Safari 
		xmlHttp=new XMLHttpRequest();    
		}
  	catch (e)
    	{   
		// Internet Explorer    
		try
      		{
				xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");      
			}
    	catch (e)
    		{
			try
       			{
				xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");        
				}
    		catch (e)
       			{
					alert("ĦO seu navegador non acepta AJAX!");
					return false;
				}
			}
		}
   	xmlHttp.onreadystatechange=function()
    	{
      	if(xmlHttp.readyState==4)
        	{
        	document.getElementById(objeto).innerHTML=xmlHttp.responseText;
        	}
      	}
    xmlHttp.open("GET",pagina,true);
    xmlHttp.send(null);  
	}
	
function envia_formulario()
	{
	var x=document.getElementById("formulario");
	var valores=x.suscribir;
	var cantidad=0;
	txt="";
	for (i=0;i<valores.length;i++)
		if (valores[i].checked)
			{
			txt=txt + valores[i].value + ",";
			cantidad++;
			}
	if(cantidad==0)
		alert("There is no one selected");
	else
		ajax_div('matricula','matriculado.php?alta='+txt+'&alumno_id='+x.alumno_id.value);
	}

function envia_formulario2()
	{
	var x=document.getElementById("formulario");
	var fin=x.financial;
	var sig=x.signup;
	ajax_div('oculto','financial.php?guarda='+fin.value+'&fecha='+sig.value);
	}