function checkcookies() {
	popuptitle='<h1 style="font-family:Verdana,Arial,Helvetica;font-size:14px;line-height:20px;width:100%;text-align:center;background-color:#cc0000;color:#ffffff;margin-bottom:0px;margin-top:0px;">COOKIES NICHT AKTIVIERT!</h1>';
	popuptext='Um in den geschlossenen Bereich zu gelangen, muss der Browser Cookies ablegen können. Bitte richten Sie Ihren Browser so ein, dass er Cookies akzeptiert oder Sie auf jedes neue Cookie aufmerksam macht. Näheres dazu finden Sie in der Hilfefunktion Ihres Browsers unter dem Stichwort &quot;Cookies&quot;.';
	if (!cookieCheck("unique_visitor")) {
		pop=window.open("about:blank",'cook','height=210,width=250,left=200,top=200,menubar=no,resizable=no,scrollbars=no,status=no');
		if (pop && !pop.closed) {
			pop.document.writeln('<html><head><title>Warnung</title></head><body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">');
			pop.document.writeln(popuptitle);
			pop.document.writeln('<div style="background-color:white;font-family:Verdana,Arial,Helvetica;font-size:12px;line-height:12px;color:#000000;padding:10px;">'+popuptext+'</div>');
			pop.document.writeln('<a href="" onclick="window.close();" style="margin-top:10px;margin-left:80px;"><img src="/images/content/schliessen.gif" border="0" alt="Popup schliessen" style="margin-top:10px;"></a>');
			pop.document.writeln('</body></html>');
			pop.document.close();
			pop.focus();
			return "";
		} else {
			str='<div  id="popup" style="position:absolute;top:200px;left:204px;width:250px;height:210px;background-color:white;display:block;zindex:99;visibility:visible;border-color:red;border-width:2px;border-style:solid;">'+popuptitle+'<div style="font-family:Verdana,Arial,Helvetica;font-size:12px;line-height:14px;color:#000000;padding:10px;">'+popuptext+'<br><a href="javascript:nothing();" onclick="document.getElementById(\'popup\').style.visibility = \'hidden\';" style="margin-top:10px;margin-left:80px;"><img src="/images/content/schliessen.gif" border="0" alt="Popup schliessen" style="margin-top:10px;"></a></div></div>';
			return str;
		}
	} else return "";
}