
function showInfo(section, item_id) {
	var url = 'includes/php/update_copy.php';
	var pars = 'section=' + section + '&item_id=' + item_id;

	new Ajax.Updater('IFcopy', url, {
		method:'get',
		parameters: pars,
		onSuccess: function(transport) {
			var response = transport.responseText || "no response text";
			//alert("Success! \n\n" + response);
		}
	});
}