function openWinFullscreen( windowURL, windowName, windowFeatures, taal ) { 
	// plaats cookie om te bewaren dat we in fullscreen modus kijken
	if (!taal) taal='uk';
	window.open( windowURL, windowName, windowFeatures );
	document.cookie="fs=1; path=/";
	window.location = '../../thank_you.php?taal='+taal;
	
}

function winCloseandClean(taal) {
	// ruim het fs cookie op en sluit het venster
	window.opener.location = '../../thank_you.php?taal='+taal;
	document.cookie="fs=''; path=/";
	window.close();	
}