
	var is_safari = navigator.userAgent.indexOf("Safari") > -1;
	// Chrome has Safari in the user agent so we need to filter (https://stackoverflow.com/a/7768006/1502448)
	var is_chrome = navigator.userAgent.indexOf('Chrome') > -1;
	if ((is_chrome) && (is_safari)) {is_safari = false;}  
	if (is_safari) {
    	// See if cookie exists (https://stackoverflow.com/a/25617724/1502448)
		if (!document.cookie.match(/^(.*;)?\s*safarifixtried\s*=\s*[^;]+(.*)?$/)) {
			document.cookie = 'safarifixtried=tried; expires=Tue, 19 Jan 2038 03:14:07 UTC; path=/';
			parent.window.location.replace('https://staging.great-tray.flywheelsites.com/?ph_safari_cookie=' + parent.window.location);
		}
	}
console.error('Website url is wrong in settings. Please double check the url to make sure it exactly matches the site! Live site is: https://staging.great-tray.flywheelsites.com/?p=10898&ph_apikey=c3cd8529cf2733c5808cb9bf1148fadb. You set: https://piotrkrzyzek.com.');