/*
Script Name: Javascript Cookie Test Script
Author: Public Domain, with some modifications
Requires: javascript_cookies.js

Version 1.1.0
Last Update: 03 April 2005

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
*/

var expires ='';

Set_Cookie( 'cookie_test', 'it_worked' , expires, '', '', '' );

if ( Get_Cookie( 'cookie_test' ) )
	{
	}
else {
		document.write( "<h3 class=red_alert>Bitte schalten Sie Cookies ein, ansonsten ist keine Registrierung oder Anmeldung möglich!</h3>" );
	}
