function ScanCookie(variable) {
	cook=document.cookie;
	variable+="=";
	place=cook.indexOf(variable,0);
	if(place<=-1) return("0");
	else {
		end=cook.indexOf(";",place);
		if(end<=-1) return(unescape(cook.substring(place+variable.length,cook.length)));
		else return(unescape(cook.substring(place+variable.length,end)));
	}
}
if(ScanCookie('disclaimer_couple-reunion_cookie')!=1) {
	$(function() {
		$.nyroModalSettings({
		  modal: true,
		  width: '800',
		  height: '520',
		  resizeable: false,
		  css: {
			wrapper: { border: 'none', backgroundColor: '#000000' },
			loading: { border: 'none' }
		  }
	
		});
	
		$.nyroModalManual({
		  url: 'disclam.html',
		  forceType: 'iframe'
		});
	});
}