
function showArticleImage(articleUrl, articleId, field, start, id) {
	new Ajax.Request(articleUrl, {
		method: 'get',
		parameters: {
			service: 'ajaxSwitch',
			type: 'articleImagePopup',
			field: field,
			start: start,
			articleId: articleId
		},
		onSuccess: function(transport) {
			openPopup(id, transport.responseText);
			document.location = "#articleimage-popup";
		}
	});
}

function closeArticleImage(id) {
	closePopup(id);
}
