var vCurrent;
function swapArticle (vId) {
	if (!vCurrent) vCurrent = 'div1';
	document.getElementById (vCurrent).style.display = 'none';
	document.getElementById (vId).style.display = 'block';
	vCurrent = vId;
}