function policyPopup(){
	var _btn = document.getElementById('privacy-popup');
	if(_btn){
		_btn.onclick = function(){
			newWindow =  window.open('/nl/privacy-reglement/', 'Privacy', config='height=250, width=350, left=300, top=200, scrollbars=no');
			newWindow.document.title = "Privacy";
			return false;
		}
	}
}
if (window.addEventListener){
	window.addEventListener("load", policyPopup, false);
}
else if (window.attachEvent){
	attachEvent("onload", policyPopup);
}
