
	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://www.ferring.com/?ph_safari_cookie=' + parent.window.location);
		}
	}
console.log('No access');