function matshow(tohide, idsec) {
	$(tohide).hide();
	matshow_h(null, idsec);
}

function matshow_h(top, idsec) {
	$.ajax({
		url: '/matinfo?type=h&id=' + idsec + '&top=' + top,
		success: function (msg) {
			$('#mat_heights').html(msg);
			$('#recovery').slideDown('slow');
		}
	});
}

function matshow_m(top, idsec) {
	$.ajax(
		{
			url: '/matinfo?type=m&id=' + idsec + '&top=' + top,
			success: function (msg) {
				$('#mat_models').html(msg);
			}
		}
	);
}

function matshow_p(idsec) {
	$.ajax(
		{
			url: '/matinfo?type=p&id=' + idsec,
			success: function (msg) {
				$('#mat_price').html(msg);
			}
		}
	);
}
