function save_inscripcion(url){
	var id_curso = document.getElementById('slc_id_curso').value;
	var tipo_documento = document.getElementById('txt_tipo_documento').value;
	var documento = document.getElementById('txt_documento').value;
	var nombre = document.getElementById('txt_nombre').value;
	var apellido = document.getElementById('txt_apellido').value;
	var sexo = document.getElementById('slc_sexo').value;
	var nacionalidad = document.getElementById('txt_nacionalidad').value;
	var email = document.getElementById('txt_email').value;
	var telefono = document.getElementById('txt_telefono').value;
	url += '&id_curso='+id_curso + '&tipo_documento='+tipo_documento + '&documento='+documento + '&nombre='+nombre + '&apellido='+apellido + '&sexo='+sexo + '&nacionalidad='+nacionalidad + '&email='+email + '&telefono='+telefono;

	obj = make_xmlhttp('td_msn');
	obj.open('GET', url, true);
	obj.send();

	document.getElementById('slc_id_curso').disabled = true;
	document.getElementById('txt_tipo_documento').disabled = true;
	document.getElementById('txt_documento').disabled = true;
	document.getElementById('txt_nombre').disabled = true;
	document.getElementById('txt_apellido').disabled = true;
	document.getElementById('slc_sexo').disabled = true;
	document.getElementById('txt_nacionalidad').disabled = true;
	document.getElementById('txt_email').disabled = true;
	document.getElementById('txt_telefono').disabled = true;
}

function get_formulario_inscripcion(url){
	get_article('articles', url)
}
