function showManuf(container,count) {
		$("#sm").hide();
		
		$.ajax( {
			url :  "/ajax/new_manuf.php?count=" + count,
			type: "get",
			dataType : 'text',
			success : function(data) {
				
				if (data.substring(0,5) == 'error') {
					msg = data.split(":");
					alert(msg[1]);
					return false;
				}
				if (data != "") {
					$("#"+container).append(data);
				} else {
					$("#sm").show();
				}
				
			},
			error : function() {
				$("#sm").show();
				alert('Ошибка загрузки данных.')
			}
		
		
		} );
		
	
}
