function toggle (obj) {
	var articleid = obj.id.substring(6,obj.id.length);
	if (document.getElementById("comments"+articleid).style.display != 'block') document.getElementById("comments"+articleid).style.display = 'block';
	else document.getElementById("comments"+articleid).style.display = 'none';
	return 0;
	}





