var resource_ext;
var resource_id_ext;
var id_ext;


$(document).ready(function() {
	
	$("#comment-button").click(function() {
		//alert(id_ext);
		//alert( $("#comment").val());
		$.get('/comments/', {resource: resource_ext, resource_id: resource_id_ext, comment: $("#comment").val()}, function(html) {
			$(id_ext).html(html);

		});
	});
	

});

function load_comment_window(id, resource, resource_id) {
	id_ext = id;
	resource_ext = resource;
	resource_id_ext = resource_id;
	$.get('/comments/', {resource: resource, resource_id: resource_id}, function(html) {
		$(id).html(html);
	});
}
