var hiddenWnd = null;

function wndClose(wnd) {
	var domainName = wnd.document.domain;

	if (wnd.closed) {
		leavepage(domainName);
		return;
	}

	hiddenWnd = wnd.open('/exit.html', 'hidden',
					'top=5000,left=5000,' +
					'height=10,width=10,' +
					'scrollbars=no,location=no,' +
					'directories=no,status=no,' +
					'menubar=no,toolbar=no,resizable=no'
				);
	if (! hiddenWnd) {
		// popup killaz
		leavepage(domainName);
		return;
	}
	var timeout = hiddenWnd.setTimeout('leavepage("' + domainName + '")', 5 * 1000);
	wnd.focus();
}


function leavepage(domainName) {
	var newwin;
	var tmp = '';

	self.onerror = null;
	try {
		tmp = (self.opener) ? self.opener.document.domain : '';
	} catch(err) {
		// when security errors occurs it means we've left the website.
		tmp = '';
	}
//	alert(tmp + " <--> " + domainName);
	if (domainName == tmp) {
		//alert('closing');
		self.close();
		return;
	}
	self.focus();
	var result = confirm("On-line sex DVD bekijken?");
	if (! result) {
		document.links[0].click();
//		newwin = self.open("/ttt-out.php","","top='200',left='200',scrollbars=1,toolbar=1,location=1,status=1,menubar=1,resizable=1,dependent=1,copyhistory=1");
	} else {
		document.links[1].click();
//		newwin = self.open("/random.php","","top='200',left='200',scrollbars=1,toolbar=1,location=1,status=1,menubar=1,resizable=1,dependent=1,copyhistory=1")
	}
	self.close();
}
