function saveNewsModuleConfig()
{
    var position = $('position').getValue();
    new Ajax.Updater({ success: 'content', onLoading: Loading('content', 'Content') },
			'resources/modules/news/main.php',
			{
				method: 'post',
				parameters: {Page: 'Admin', Action: 'Save', Position: position}
			}
	);
}
function showModuleNews(id)
{
    new Ajax.Updater({ success: 'content', onLoading: Loading('content', 'Content') },
			'resources/modules/news/main.php',
			{
				method: 'post',
				parameters: {Page: 'Single', ID: id}
			}
	);
}
