var nwin = null;

function OpenNews(url)
{
	if (nwin)
	{
		nwin.close();
	}
	nwin = window.open(url,"rssWin","");
}