function showArticle(div, id, total) {
	//alert(div);
	var thisDiv = document.getElementById(div);
	for(var x=0; x<total; x++) {
		var otherDiv = 'full' + x;
		
		if(x == id) { 
		 	thisDiv.style.display = "block";
			window.location = "#article";
		}
		else {
			document.getElementById(otherDiv).style.display = "none";
		}
	}
}
