
function load_printers() {
	
	load_html('printers_list_container', 'components/\printers_list_page.aspx?man_id='+$('man_list').value+'&printer_type='+$('printer_type').value);
	
}

function load_html(cont, url) {
	//$(cont).fade(1,0);
	$(cont).empty().addClass('ajax-loading');
	var req = new Request.HTML({
					method: 'post',
					url: url,
					onRequest: function() {  },
					update: $(cont),
					onComplete: function(response) {
						$(cont).setOpacity(0);
						$(cont).removeClass('ajax-loading');
						//$(cont).empty();
						//$(cont).adopt(response);
						//$(cont).set('html',response.html); 
						//myVerticalSlide = new Fx.Slide('cat_strip_container');
						$(cont).fade(0,1);
					}
				}).send();
}
