function OpenEmpfehlung(href)
{
	var width = 507;
	var height = 411;
	var win = window.open(href, "_blank", "width="+width+",height="+height+",scrollbars=no");
	win.moveTo((screen.width-width)/2, (screen.height-height)/2);
}

function SelectNews(ID, highestID)
{
	for (i=1; i<=highestID; i++)
	{
		if (document.getElementById("News"+i))
		{
			document.getElementById("News"+i).style.display = "none";
		}
	}

	if (document.getElementById("News"+ID))
		document.getElementById("News"+ID).style.display = "block";
}
