function loadTool(stool) {
$('#report').html('<img src="http://static.thehive.ws/images/engine/ajax-loader-small.gif" alt="Loading..." />');
$.ajax({
	url: '/ajax/?module=cherubi-tools&action=load&tool=' + stool + '&cache=' + (new Date).getTime(),
	type: 'GET',
	dataType: 'html',
	timeout: 30000,
	error: function(XMLHttpRequest, textStatus, errorThrown){
		$('#report').html('<p class="report-alert">Error loading tool: This means either our page is broken or your Internet connection is currently unavailable -- it\'s probably the latter.</p>');
	},
	success: function(shtml){
		var xhtml = $('#tool-load-area').html() + shtml;
		$('#tool-load-area').html(xhtml);
		$('#link-' + stool).hide();
	}
});
$('#report').html('');
}

function loadTools(sex) {
$('#report').html('<img src="http://static.thehive.ws/images/engine/ajax-loader-small.gif" alt="Loading..." />');
$.ajax({
	url: '/ajax/?module=cherubi-tools&action=all-calcs&tool=' + sex + '&cache=' + (new Date).getTime(),
	type: 'GET',
	dataType: 'html',
	timeout: 30000,
	error: function(XMLHttpRequest, textStatus, errorThrown){
		$('#report').html('<p class="report-alert">Error loading tool: This means either our page is broken or your Internet connection is currently unavailable -- it\'s probably the latter.</p>');
	},
	success: function(shtml){
		var xhtml = $('#tool-load-area').html() + shtml;
		$('#tool-load-area').html(xhtml);
	}
});
$('#report').html('');
}

