// JavaScript Document
var peticion = false; 

if (window.XMLHttpRequest) {
peticion = new XMLHttpRequest();
} else if (window.ActiveXObject) {
peticion = new ActiveXObject("Microsoft.XMLHTTP");
}

function ObtenerDatos(datos,divID,idUser,edicion,tipo_user) { 
	if(peticion) {
			 var obj = document.getElementById(divID); 
			 var params = "idUser="+idUser+"&edicion="+edicion+"&tipo_user="+tipo_user;
			 var archivos = ["/Sistema_Gestion/Inscripciones/inscripciones_lista_programas.php", "/Sistema_Gestion/Matriculas/matriculas_index.php", "/Sistema_Gestion/Caja/caja_index.php", "cgi-bin/Sistema Gestion/modulo_asignar_asesor.pl", "cgi-bin/Sistema Gestion/modulo_asignar_alumno_asesor.pl", "cgi-bin/Sistema Gestion/modulo_asignar_items.pl", "cgi-bin/Sistema Gestion/modulo_calificaciones.pl", "cgi-bin/Sistema Gestion/modulo_permisos.pl", "cgi-bin/Sistema Gestion/modulo_agregar_miembroCLD.pl", "/Sistema_Gestion/Editar_Datos/editar_datos_index.php", "cgi-bin/Sistema Gestion/inicio_sistema.pl", "cgi-bin/Sistema Gestion/completar_matricula.pl", "cgi-bin/Sistema Gestion/modulo_evaluaciones.pl", "cgi-bin/Sistema Gestion/modulo_enviar_correos.pl", "cgi-bin/Sistema Gestion/modulo_asistencias.pl", "/Sistema_Gestion/Web/index.php"];

			 var url = archivos[datos];

			 peticion.open("POST", url, true); 
			 peticion.setRequestHeader("Content-type","application/x-www-form-urlencoded");
			 peticion.setRequestHeader("Content-length",params.length);
			 peticion.onreadystatechange = function()  { 
				if(peticion.readyState==1)				{
				obj.innerHTML='<div align="center" style="margin-top:150px;"><img src="../image/loading_system.gif" /><br><span class="style11" style="margin-top:5px;">Cargando Contenidos</span></div>';
				}
		        if (peticion.readyState == 4) { 
				   obj.innerHTML = peticion.responseText; 
    			  } 
			 } 
		peticion.send(params); 
	}
}

function CambiarEstilo(id) {
	var elementosMenu = getElementsByClassName(document, "li", "activo");
	for (k = 0; k< elementosMenu.length; k++) {
	elementosMenu[k].className = "inactivo";
	}
	var identity=document.getElementById(id);
	identity.className="activo";
}

function getElementsByClassName(oElm, strTagName, strClassName){
    var arrElements = (strTagName == "*" && document.all)? document.all : oElm.getElementsByTagName(strTagName);
    var arrReturnElements = new Array();
    strClassName = strClassName.replace(/\-/g, "\\-");
    var oRegExp = new RegExp("(^|\\s)" + strClassName + "(\\s|$)");
    var oElement;
    for(var i=0; i<arrElements.length; i++){
        oElement = arrElements[i];      
        if(oRegExp.test(oElement.className)){
           arrReturnElements.push(oElement);
        }   

   }
   return (arrReturnElements)
}

function ValidarCambioImagen(form){
	return ext_imagen(form.archivo.value);
}

function CambiarImagen(DivID, idAlumno, tipo, width, height){
	if(!width){
		width = 150;
	}if(!height){
		height = 80;
	}
	document.getElementById(DivID).innerHTML = '<iframe src="http://liderazgo.ucsp.edu.pe/lib/ficha_cambiar_imagen.php?idAlumno='+idAlumno+'&type='+tipo+'" width="'+width+'" height="'+height+'" frameborder="0" scrolling="si"></iframe>';
}
function getIframeEditWeb(url){
	frameditweb.location = url;
}
