function show_comments(id, type, table, s, urlbase)
{
	$.ajax({ 
			type: "GET",
			url: urlbase + "site_management/ajax/show_comments.php",
			data: { id: id, type: type, table: table, s: s },
			dataType: "html",
			cache: false,
			success: function(data) {
					$('#commentsholder').html(data);
					$("button, input:submit, input:button").button().css("font-size", "11px");
			}	
		});
}
