// Original JavaScript code by Duncan Crombie: dcrombie at chirp.com.au
// Modification by Tim Brauer: www.fuchs-edv.de
/*
var bikky = document.cookie;
var Verfall = new Date();
var invierWochen = Verfall.getTime() + (4 * 7 * 24 * 60 * 60 * 1000);

function getCookie(name) // use: getCookie("name");
	{
	var index = bikky .indexOf(name + "=");
	if (index == -1) return null;
	index = bikky .indexOf("=", index) + 1; // first character
	var endstr = bikky .indexOf(";", index);
	if (endstr == -1) endstr = bikky .length; // last character
	return unescape( bikky .substring(index, endstr));
	}

if (!getCookie("visited"))
	{
	Umfrage();
	Verfall.setTime(invierWochen);
	document.cookie = "visited=true; expires=" + Verfall.toGMTString();
	}
*/
function Umfrage()
	{
	window.open('http://www.fuchs-edv.de/banner/index.php', 'Banner', 'scrollbars=1,toolbar=0,location=0,status=0,menubar=0,resizable=0,width=555,height=570,top=60,left=60');
	}

