<!--
function fncConfirmDeleteArticle(articlename)
	{
	var agree=confirm('Are you sure you want to delete the article "'+articlename+'"?\n\nNOTE: This cannot be undone!');
	if (agree)
		return true;
	else
		return false;
	}
-->