		function loadCongr ( ) {
			$.getJSON ( '/congr/get/?tmp='+Math.random(),
					{},
									function ( data ) {
										atext = data.action + ' <br>';
										if ( data.id > 0 )
											atext += '<a href="/congr/?c='+data.id+'&p=1" target="_image" onclick="window.open(this.href,\'_image\',\'width=640,height=480,toolbar=no,scrollbars=yes,resizable\')">'+data.who+'</a>';
										else
											atext += data.who;
										atext += '<br><strong>'+data.what+'!</strong>';
										$('#c_action').html ( atext );
										$('#c_text').html ( data.short_text );
										if ( data.timeout > 0 )
											setTimeout ( 'loadCongr()', data.timeout * 1000 );
									}
							);
						}
				
						
						

