function ampliarImagen(objImg,rutaImg){
	jQuery.noConflict();
	jQuery(objImg).hide();
	jQuery(objImg).attr("src",function() {    
		return rutaImg;
	});
	jQuery(objImg).fadeIn("slow");
}
// Para cargar el contenido de las paginas
function fncCargarContenido(url,params,objDiv,top){
	jQuery.noConflict();
	objDiv = "#"+objDiv;
	if(!top) top=100;
	if(top>0){
		var msg = "<div align='center' style='padding-top:"+top+"px'><img src='img/cargador.gif' border='0' /></div>";
		//jQuery(objDiv).hide().html(msg).fadeIn("slow");
		jQuery(objDiv).html(msg);
	}
	jQuery.ajax({type: "POST",
		url: url,
		data: params,
		dataType: "html",
		success: function(datos){
			jQuery(objDiv).hide().html(datos).fadeIn("slow");
			//tb_init('a.thickbox, area.thickbox, input.thickbox');
		},
		error: function(XMLHttpRequest, textStatus, errorThrown){
			alert ("error: "+textStatus);
		}
	});

}