
	var aux = "";
	function load_info_semestre(grado, num_semestre, tipo){
		if(aux == grado){
			if(document.getElementById("info_"+grado).style.display == "inline"){
				document.getElementById("info_"+grado).style.display = "none";
			}else{
				document.getElementById("info_"+grado).style.display = "inline";
			}
		}else{
			document.getElementById("info_"+grado).style.display = "inline";
			if(aux != ""){
				document.getElementById("info_"+aux).style.display = "none";
			}
		}
		aux = grado;
		if(tipo == 'planes'){
			procesaAjax('mapa_curricular_semestre.php','opcion=mapa_semestre&id_semestre='+num_semestre,'ajx_content');
		}
		if(tipo == 'guias'){
			procesaAjax('mapa_curricular_semestre_guias.php','opcion=mapa_semestre_guias&id_semestre='+num_semestre,'ajx_content');
		}
	}
	
	function cargar_materias_categoria(tipo, id_semestre, id_categoria, categoria){
		if(tipo == '2'){
		procesaAjax('plan_categoria_materias.php','tipo='+tipo+'&opcion=plan_categoria_materias&id_semestre='+id_semestre+'&id_categoria='+id_categoria+'&categoria='+categoria,'content_principal_plan_formacion');
		}
		
		if(tipo == '3'){
		procesaAjax('plan_categoria_materias.php','tipo='+tipo+'&opcion=plan_categoria_materias&id_semestre='+id_semestre+'&id_categoria='+id_categoria+'&categoria='+categoria,'content_principal_plan_grupo');
		}
	}
	
	function cargar_guias_categoria(tipo, id_semestre, id_categoria, categoria){
		if(tipo == '2'){
		procesaAjax('guias_categoria.php','tipo='+tipo+'&opcion=guias_categoria&id_semestre='+id_semestre+'&id_categoria='+id_categoria+'&categoria='+categoria,'content_principal_plan_formacion');
		}
		
		if(tipo == '3'){
		procesaAjax('guias_categoria.php','tipo='+tipo+'&opcion=guias_categoria&id_semestre='+id_semestre+'&id_categoria='+id_categoria+'&categoria='+categoria,'content_principal_plan_grupo');
		}
	}
	
	function cargar_detalle_noticia_externa(id_noticia){
		window.parent.cargar_detalle_noticia(id_noticia);
	}
	
	function cargar_detalle_noticia(id){
		var body_height = document.documentElement.clientHeight;
		//var body_height = 370;
		var margin_top_bottom = 60;
		var header_height = 123;
		var marco_height = body_height - margin_top_bottom - header_height;
		var middle = marco_height/2;
		document.getElementById('fondo_oscuro').style.display='inline'; 
		document.getElementById('marco_noticia').style.display='inline';
		document.getElementById('marco_noticia').style.height = marco_height + 'px';
		document.getElementById('marco_noticia').style.marginTop = '-' + (middle-70) + 'px';
		document.getElementById('header_marco').style.backgroundImage = 'url("images/noticiascobay.png")';
		document.getElementById('header_marco').style.backgroundPosition = 'center';
		document.getElementById('header_marco').style.marginTop = '-' + (middle+25) + 'px';
		procesaAjax('marco_noticia.php','opcion=ajx_noticia&id='+id,'marco_noticia');
	}
	
	function cargar_detalle_aviso_externa(id){
		window.parent.cargar_detalle_aviso(id);
	}
	
	function cargar_detalle_aviso(id){
		var body_height = document.documentElement.clientHeight;
		//var body_height = 370;
		var margin_top_bottom = 60;
		var header_height = 123;
		var marco_height = body_height - margin_top_bottom - header_height;
		var middle = marco_height/2;
		
		document.getElementById('fondo_oscuro').style.display = 'inline'; 
		document.getElementById('marco_noticia').style.display = 'inline';
		document.getElementById('marco_noticia').style.height = marco_height + 'px';
		document.getElementById('marco_noticia').style.marginTop = '-' + (middle-70) + 'px';
		document.getElementById('header_marco').style.backgroundImage = 'url("images/avisosimportantes.png")';
		document.getElementById('header_marco').style.backgroundPosition = 'center';
		document.getElementById('header_marco').style.marginTop = '-' + (middle+25) + 'px';
		procesaAjax('marco_noticia.php','opcion=ajx_aviso&id='+id,'marco_noticia');
	}
	
	function cargar_detalle_revista(id){
		document.getElementById('fondo_oscuro_rev').style.display='inline'; 
		document.getElementById('marco_noticia_rev').style.display='inline'; 
		procesaAjax('marco_revista.php','opcion=ajx_revista&id='+id,'marco_noticia_rev');
	}
	
	function cargar_video(id){
		var body_height = document.documentElement.clientHeight;
		//var body_height = 370;
		var margin_top_bottom = 60;
		var header_height = 123;
		var marco_height = body_height - margin_top_bottom - header_height;
		var middle = marco_height/2;
		document.getElementById('fondo_oscuro').style.display = 'inline'; 
		document.getElementById('marco_noticia').style.display = 'inline';
		document.getElementById('marco_noticia').style.height = marco_height + 'px';
		document.getElementById('marco_noticia').style.marginTop = '-' + (middle-70) + 'px';
		document.getElementById('header_marco').style.backgroundImage = 'url("images/cobaytv.png")';
		document.getElementById('header_marco').style.backgroundPosition = 'center';
		document.getElementById('header_marco').style.marginTop = '-' + (middle+25) + 'px';
		procesaAjax('marco_video.php','opcion=ajx_video&id='+id,'marco_noticia');
	}
	
	function cerrar_marco_noticia(){
		document.getElementById('marco_noticia').innerHTML = '';
		document.getElementById('marco_noticia').style.display='none'; 
		document.getElementById('fondo_oscuro').style.display='none';
	}
	
	function cerrar_marco_revista(){
		document.getElementById('marco_noticia_rev').innerHTML = '';
		document.getElementById('marco_noticia_rev').style.display='none'; 
		document.getElementById('fondo_oscuro_rev').style.display='none';
	}
	
	function show(){
		var Digital = new Date();
		var hours = Digital.getHours();
		var minutes = Digital.getMinutes();
		var seconds = Digital.getSeconds();
		var dn = "AM"; 
		if(hours > 12){
			dn = "PM";
			//hours = hours - 12;
		}
		if(hours < 10){
			hours = "0" + hours;
		}
		if(hours == 0){
			hours = 12;
		}
		if (minutes <= 9){
			minutes = "0" + minutes;
		}
		if(seconds <= 9){
			seconds = "0" + seconds;
		}
		document.getElementById('content_clock').innerHTML = hours + " : " + minutes + " : " + seconds;
		setTimeout("show()",1000);
	}
	
	var txt_avisos = '';
	function cargar_avisos(tipo){
		switch (tipo){
			case 'ultimos':
				txt_avisos = 'ULTIMOS AVISOS';
				break;
			case 'importantes':
				txt_avisos = 'AVISOS IMPORTANTES';
				break;
			case 'todos':
				txt_avisos = 'AVISOS EN GENERAL';
				break;
		}
		document.getElementById('txt_avisos_imp').innerHTML = txt_avisos;
		procesaAjax('ajx_avisos.php','opcion=ajx_aviso_by_type&tipo='+tipo,'content_avisos_down');
		cargar_easy_slider();
	}
	
	function cargar_easy_slider(){
		if(cargado == 1){
			t = 0;
			ot = 0;
			orientation = 'der';
			ts = 1;
		$("#slider").easySlider({
				controlsBefore:	'<p id="controls">',
				controlsAfter:	'</p>',
				auto: true, 
				continuous: false
			});
			//animate("next",false);
		}else{
			setTimeout('cargar_easy_slider()',1000);
		}
	}
	
	function cargar_fotos_actividad(id_actividad){
		procesaAjax('ajx_fotos_actividad.php','opcion=fotos_actividad&id_actividad='+id_actividad,'actividad_descripcion');
		document.getElementById('actividad_ver_galeria').innerHTML = '<a href="javascript:void(0);" onclick="cargar_texto_actividad(\''+id_actividad+'\');" style="color:#27b44a; text-decoration:underline;"><img src="images/regresarnoticia.jpg" border="0" align="absmiddle" hspace="10" width="36" height="35" />REGRESAR ACTIVIDAD</a>';
	}
	
	function cargar_texto_actividad(id_actividad){
		procesaAjax('ajx_info_actividad.php','opcion=ajx_plantel_info&id_actividad='+id_actividad,'actividad_descripcion');
		document.getElementById('actividad_ver_galeria').innerHTML = '<a href="javascript:void(0);" onclick="cargar_fotos_actividad(\''+id_actividad+'\');" style="color:#27b44a; text-decoration:underline;"><img src="images/vergaleria.jpg" border="0" align="absmiddle" hspace="10" width="36" height="35" />VER GALER&Iacute;A</a>';
		
	}
	
	function cargar_info_emsad(valor){
		procesaAjax('ajx_emsad_info.php','opcion=ajx_emsad_info&valor='+valor,'content_emsad_info');
	}
