{"version":"1.0","provider_name":"Fertilovit\u00ae","provider_url":"https:\/\/fertilovit.com\/en","author_name":"Mathias","author_url":"https:\/\/fertilovit.com\/en\/author\/reboot-admin\/","title":"Privacy Policy","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"D7UsQeFycl\"><a href=\"https:\/\/fertilovit.com\/en\/privacy-policy\/\">Privacy Policy<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/fertilovit.com\/en\/privacy-policy\/embed\/#?secret=D7UsQeFycl\" width=\"600\" height=\"338\" title=\"&#8220;Privacy Policy&#8221; &#8212; Fertilovit\u00ae\" data-secret=\"D7UsQeFycl\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script>\n\/**\r\n * WordPress inline HTML embed\r\n *\r\n * @since 4.4.0\r\n * @output wp-includes\/js\/wp-embed.js\r\n *\r\n * Single line comments should not be used since they will break\r\n * the script when inlined in get_post_embed_html(), specifically\r\n * when the comments are not stripped out due to SCRIPT_DEBUG\r\n * being turned on.\r\n *\/\r\n(function ( window, document ) {\r\n\t'use strict';\r\n\r\n\t\/* Abort for ancient browsers. *\/\r\n\tif ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {\r\n\t\treturn;\r\n\t}\r\n\r\n\t\/** @namespace wp *\/\r\n\twindow.wp = window.wp || {};\r\n\r\n\t\/* Abort if script was already executed. *\/\r\n\tif ( !! window.wp.receiveEmbedMessage ) {\r\n\t\treturn;\r\n\t}\r\n\r\n\t\/**\r\n\t * Receive embed message.\r\n\t *\r\n\t * @param {MessageEvent} e\r\n\t *\/\r\n\twindow.wp.receiveEmbedMessage = function( e ) {\r\n\t\tvar data = e.data;\r\n\r\n\t\t\/* Verify shape of message. *\/\r\n\t\tif (\r\n\t\t\t! ( data || data.secret || data.message || data.value ) ||\r\n\t\t\t\/[^a-zA-Z0-9]\/.test( data.secret )\r\n\t\t) {\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tvar iframes = document.querySelectorAll( 'iframe[data-secret=\"' + data.secret + '\"]' ),\r\n\t\t\tblockquotes = document.querySelectorAll( 'blockquote[data-secret=\"' + data.secret + '\"]' ),\r\n\t\t\tallowedProtocols = new RegExp( '^https?:$', 'i' ),\r\n\t\t\ti, source, height, sourceURL, targetURL;\r\n\r\n\t\tfor ( i = 0; i < blockquotes.length; i++ ) {\r\n\t\t\tblockquotes[ i ].style.display = 'none';\r\n\t\t}\r\n\r\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\r\n\t\t\tsource = iframes[ i ];\r\n\r\n\t\t\tif ( e.source !== source.contentWindow ) {\r\n\t\t\t\tcontinue;\r\n\t\t\t}\r\n\r\n\t\t\tsource.removeAttribute( 'style' );\r\n\r\n\t\t\tif ( 'height' === data.message ) {\r\n\t\t\t\t\/* Resize the iframe on request. *\/\r\n\t\t\t\theight = parseInt( data.value, 10 );\r\n\t\t\t\tif ( height > 1000 ) {\r\n\t\t\t\t\theight = 1000;\r\n\t\t\t\t} else if ( ~~height < 200 ) {\r\n\t\t\t\t\theight = 200;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tsource.height = height;\r\n\t\t\t} else if ( 'link' === data.message ) {\r\n\t\t\t\t\/* Link to a specific URL on request. *\/\r\n\t\t\t\tsourceURL = new URL( source.getAttribute( 'src' ) );\r\n\t\t\t\ttargetURL = new URL( data.value );\r\n\r\n\t\t\t\tif (\r\n\t\t\t\t\tallowedProtocols.test( targetURL.protocol ) &&\r\n\t\t\t\t\ttargetURL.host === sourceURL.host &&\r\n\t\t\t\t\tdocument.activeElement === source\r\n\t\t\t\t) {\r\n\t\t\t\t\twindow.top.location.href = data.value;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t};\r\n\r\n\tfunction onLoad() {\r\n\t\tvar iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\r\n\t\t\ti, source, secret;\r\n\r\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\r\n\t\t\t\/** @var {IframeElement} *\/\r\n\t\t\tsource = iframes[ i ];\r\n\r\n\t\t\tsecret = source.getAttribute( 'data-secret' );\r\n\t\t\tif ( ! secret ) {\r\n\t\t\t\t\/* Add secret to iframe *\/\r\n\t\t\t\tsecret = Math.random().toString( 36 ).substring( 2, 12 );\r\n\t\t\t\tsource.src += '#?secret=' + secret;\r\n\t\t\t\tsource.setAttribute( 'data-secret', secret );\r\n\t\t\t}\r\n\r\n\t\t\t\/*\r\n\t\t\t * Let post embed window know that the parent is ready for receiving the height message, in case the iframe\r\n\t\t\t * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the\r\n\t\t\t * window will then (re-)send the height message right away.\r\n\t\t\t *\/\r\n\t\t\tsource.contentWindow.postMessage( {\r\n\t\t\t\tmessage: 'ready',\r\n\t\t\t\tsecret: secret\r\n\t\t\t}, '*' );\r\n\t\t}\r\n\t}\r\n\r\n\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\r\n\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\r\n})( window, document );\n\/\/# sourceURL=https:\/\/fertilovit.com\/wp-includes\/js\/wp-embed.js\n<\/script>\n","description":"Privacy Policy 1. General We take the protection of personal data very seriously and adhere strictly to the rules of data protection laws (DSGVO, TKG, MedienG, ECG, UGB). The collected data are protected by technical and organizational measures to the best of our ability. Personal data is only processed internally. There is no transfer to [&hellip;]"}