$(document).ready(function() {
	loading();
	cargarTemplate('general');
});

var cargaHab=0;
var prev_opt = 'general';
function cargarTemplate(opc) {
	if (cargaHab==0) {
		cargaHab=1;
		//$("#DatosProfesor").slideUp('fast');
		$.ajax({
			type: "GET",
			url: "ajax_profesor_ficha.php",
			data: "d="+opc+"&id="+$("#id").val(),
			success: function(data){
				$("#opt_"+prev_opt).removeClass("selected");
				$("#opt_"+opc).addClass("selected");
				prev_opt = opc;
				$("#DatosProfesor").html(data); //carga la opcion de la ficha seleccionada
				//$("#DatosProfesor").slideDown('normal');
				cargaHab=0;
			}
		});
	}
	else{
		
	}
}

function openImage(img){
	image= new Image();
	image.src=(img);
	openWindow(img);
}

function openWindow(img){
	if((image.width!=0)&&(image.height!=0)){
	viewImage(img);
	}
	else{
	stuff="openWindow('"+img+"')";
	stuff1=setTimeout(stuff,20);
	}
}
function viewImage(img){
	w=image.width+0;
	h=image.height+0;
	dims="width="+w+",height="+h;
	result=window.open(img,"",dims);
}


