window.addEvent('domready', function()
{
	loadornot();
});


function getcookie(Name)
{
	var search = Name + "=";
	var returnvalue = "";
	if (document.cookie.length > 0)
	{
		offset = document.cookie.indexOf(search);
		if (offset != -1)
		{ // if cookie exists
			offset += search.length;
			// set index of beginning of value
			end = document.cookie.indexOf(";", offset);
			// set index of end of cookie value
			if (end == -1)
			{
				end = document.cookie.length;
			}
			returnvalue=unescape(document.cookie.substring(offset, end));
		}
	}
	return returnvalue;
}

function loadornot()
{
	if (getcookie('popunder') == '')
	{
		loadpopunder();
		var ablauf = new Date();
		var einTag = ablauf.getTime() + (1 * 24 * 60 * 60 * 1000);
		ablauf.setTime(einTag);
		document.cookie = "popunder=yes; expires=" + ablauf.toGMTString();
	}
}

function loadpopunder()
{
	win2 = window.open(popunder, "erotiktip", popoptions);
	if(win2)
	{
		win2.blur();
		window.focus();
	}
}