var currentShown=null;
function showNews(oNews) {
	if(navigator.appName=='Microsoft Internet Explorer')
	{
		if(currentShown) {
			currentShown.nextSibling.style.display='none';
			currentShown.style.display="block";
			currentShown.previousSibling.style.display="block";
		}
		var oParagraph=oNews.nextSibling;
		oParagraph.style.display='block';
		currentShown=oNews;
		oNews.style.display='none';
		var oShort=oNews.previousSibling;
		oShort.style.display="none";
	}
	else
	{
		if(currentShown) {
			currentShown.nextSibling.nextSibling.style.display='none';
			currentShown.style.display="block";
			currentShown.previousSibling.previousSibling.style.display="block";
		}
		var oParagraph=oNews.nextSibling.nextSibling;
		oParagraph.style.display='block';
		currentShown=oNews;
		oNews.style.display='none';
		var oShort=oNews.previousSibling.previousSibling;
		oShort.style.display="none";
	}
}
