function showimg(obj){
//	ajax_request('/mod.document/action.image/fuid.'+obj.id,'','get',show_response);
	$("#div_fog").fadeIn('slow');
	$('#ajax_response').html('<img id="_wait" src="'+TEMPLATES_URL+'images/wait2.gif">');
	$("#_wait").center();
	$("#ajax_response").fadeIn('slow');
	$.get(
		'/mod.document/action.image/fuid.'+obj.id,
		function(date){
			if(date){
				if(obj.title)title='<div style="clear:both">'+obj.title+'</div>';else title='';
				$('#ajax_response').html(date);
				$('#_img').after(title);
				$('#_img').before(obj.description?'<div style="clear:both">'+obj.description+'</div>':'');
				$("#div_fog").css("display","block");
				//$("#btn_hide_fog").css("display","block");
				//$("#ajax_response").css("display","block");
				$("#ajax_response").fadeIn('slow');
				//$("#box_shadow").dropShadow();
			}
		}
	)
}
function go(url,id){if(parseInt(id)!=0){$.cookies.set('menu_act',id);}window.location=url;}