
function fnWinAGBOpen()
	{
		if (!window.winAGB) 
			{
				winAGB = window.open('https://www.kontaktkarte.de/agb.aspx','windowAGB','width=525,height=600,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes');
			}
		else 
			{
				if (!winAGB.closed)
					{
						winAGB.focus();
					}
					else
					{
						winAGB = window.open('https://www.kontaktkarte.de/agb.aspx','windowAGB','width=525,height=600,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes');
					}
			}
	}

