<?xml version="1.0"?>
<oembed><version>1.0</version><provider_name>&#x5D0;&#x5E7;&#x5E8;&#x5D5;&#x5D1;&#x5D0;&#x5DC;&#x5D0;&#x5E0;&#x5E1; &#x5DE;&#x5E7;&#x5E6;&#x5D5;&#x5E2;&#x5D9; &#x5D5;&#x5D0;&#x5E7;&#x5E8;&#x5D5; &#x5DC;&#x5DE;&#x5E9;&#x5E4;&#x5D7;&#x5D5;&#x5EA;</provider_name><provider_url>https://acroisrael.co.il/en</provider_url><author_name>&#x5D9;&#x5E0;&#x5D0;&#x5D9; &#x5DC;&#x5D1; &#x5D0;&#x5D5;&#x5E8;</author_name><author_url>https://acroisrael.co.il/en/author/levor/</author_url><title>&#x5E2;&#x5DE;&#x5D9;&#x5EA; &#x5D3;&#x5E8;&#x5D5;&#x5E8; Amit dror - &#x5D0;&#x5E7;&#x5E8;&#x5D5;&#x5D1;&#x5D0;&#x5DC;&#x5D0;&#x5E0;&#x5E1; &#x5DE;&#x5E7;&#x5E6;&#x5D5;&#x5E2;&#x5D9; &#x5D5;&#x5D0;&#x5E7;&#x5E8;&#x5D5; &#x5DC;&#x5DE;&#x5E9;&#x5E4;&#x5D7;&#x5D5;&#x5EA;</title><type>rich</type><width>600</width><height>338</height><html>&lt;blockquote class="wp-embedded-content" data-secret="IT0FkPDSFq"&gt;&lt;a href="https://acroisrael.co.il/en/%d7%a2%d7%9e%d7%99%d7%aa-%d7%93%d7%a8%d7%95%d7%a8-amit-dror/"&gt;Amit Dror&lt;/a&gt;&lt;/blockquote&gt;&lt;iframe sandbox="allow-scripts" security="restricted" src="https://acroisrael.co.il/en/%d7%a2%d7%9e%d7%99%d7%aa-%d7%93%d7%a8%d7%95%d7%a8-amit-dror/embed/#?secret=IT0FkPDSFq" width="600" height="338" title="&#x201C;&#x5E2;&#x5DE;&#x5D9;&#x5EA; &#x5D3;&#x5E8;&#x5D5;&#x5E8;  Amit dror&#x201D; &#x2014; &#x5D0;&#x5E7;&#x5E8;&#x5D5;&#x5D1;&#x5D0;&#x5DC;&#x5D0;&#x5E0;&#x5E1; &#x5DE;&#x5E7;&#x5E6;&#x5D5;&#x5E2;&#x5D9; &#x5D5;&#x5D0;&#x5E7;&#x5E8;&#x5D5; &#x5DC;&#x5DE;&#x5E9;&#x5E4;&#x5D7;&#x5D5;&#x5EA;" data-secret="IT0FkPDSFq" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"&gt;&lt;/iframe&gt;&lt;script&gt;
/**
 * WordPress inline HTML embed
 *
 * @since 4.4.0
 * @output wp-includes/js/wp-embed.js
 *
 * Single line comments should not be used since they will break
 * the script when inlined in get_post_embed_html(), specifically
 * when the comments are not stripped out due to SCRIPT_DEBUG
 * being turned on.
 */
(function ( window, document ) {
	'use strict';

	/* Abort for ancient browsers. */
	if ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {
		return;
	}

	/** @namespace wp */
	window.wp = window.wp || {};

	/* Abort if script was already executed. */
	if ( !! window.wp.receiveEmbedMessage ) {
		return;
	}

	/**
	 * Receive embed message.
	 *
	 * @param {MessageEvent} e
	 */
	window.wp.receiveEmbedMessage = function( e ) {
		var data = e.data;

		/* Verify shape of message. */
		if (
			! ( data || data.secret || data.message || data.value ) ||
			/[^a-zA-Z0-9]/.test( data.secret )
		) {
			return;
		}

		var iframes = document.querySelectorAll( 'iframe[data-secret="' + data.secret + '"]' ),
			blockquotes = document.querySelectorAll( 'blockquote[data-secret="' + data.secret + '"]' ),
			allowedProtocols = new RegExp( '^https?:$', 'i' ),
			i, source, height, sourceURL, targetURL;

		for ( i = 0; i &lt; blockquotes.length; i++ ) {
			blockquotes[ i ].style.display = 'none';
		}

		for ( i = 0; i &lt; iframes.length; i++ ) {
			source = iframes[ i ];

			if ( e.source !== source.contentWindow ) {
				continue;
			}

			source.removeAttribute( 'style' );

			if ( 'height' === data.message ) {
				/* Resize the iframe on request. */
				height = parseInt( data.value, 10 );
				if ( height &gt; 1000 ) {
					height = 1000;
				} else if ( ~~height &lt; 200 ) {
					height = 200;
				}

				source.height = height;
			} else if ( 'link' === data.message ) {
				/* Link to a specific URL on request. */
				sourceURL = new URL( source.getAttribute( 'src' ) );
				targetURL = new URL( data.value );

				if (
					allowedProtocols.test( targetURL.protocol ) &amp;&amp;
					targetURL.host === sourceURL.host &amp;&amp;
					document.activeElement === source
				) {
					window.top.location.href = data.value;
				}
			}
		}
	};

	function onLoad() {
		var iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),
			i, source, secret;

		for ( i = 0; i &lt; iframes.length; i++ ) {
			/** @var {IframeElement} */
			source = iframes[ i ];

			secret = source.getAttribute( 'data-secret' );
			if ( ! secret ) {
				/* Add secret to iframe */
				secret = Math.random().toString( 36 ).substring( 2, 12 );
				source.src += '#?secret=' + secret;
				source.setAttribute( 'data-secret', secret );
			}

			/*
			 * Let post embed window know that the parent is ready for receiving the height message, in case the iframe
			 * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the
			 * window will then (re-)send the height message right away.
			 */
			source.contentWindow.postMessage( {
				message: 'ready',
				secret: secret
			}, '*' );
		}
	}

	window.addEventListener( 'message', window.wp.receiveEmbedMessage, false );
	document.addEventListener( 'DOMContentLoaded', onLoad, false );
})( window, document );
//# sourceURL=https://acroisrael.co.il/wp-includes/js/wp-embed.js
&lt;/script&gt;</html><thumbnail_url>https://acroisrael.co.il/wp-content/uploads/2022/01/Amit-dror.jpeg</thumbnail_url><thumbnail_width>2103</thumbnail_width><thumbnail_height>1605</thumbnail_height><description>Amit is a Thai massage &amp; Shiatsu therapist and teacher and Pilates &amp; Yoga instructor. He works in the field since 1999. Amit escorted Mayumana international dance company as a team trainer and therapist in worldwide tours for 12 years He works as a therapist in his private clinic and treats physical pathologies, rehabilitation and athlete and general maintenance. He teaches Thai Massage Therapy courses for more than 10 years. Amit instructs group workshops in conventions and festivals teaching exercise (Pilates/Yoga), healing touch (thai massage) and physical partner training (partner stretching / acrobalance). &#x5E2;&#x5DE;&#x5D9;&#x5EA; &#x5D4;&#x5D5;&#x5D0; &#x5DE;&#x5D8;&#x5E4;&#x5DC; &#x5D5;&#x5DE;&#x5D5;&#x5E8;&#x5D4; &#x5DC;&#x5E2;&#x5D9;&#x5E1;&#x5D5;&#x5D9; &#x5EA;&#x5D0;&#x5D9;&#x5DC;&#x5E0;&#x5D3;&#x5D9;, &#x5E9;&#x5D9;&#x5D0;&#x5E6;&#x5D5; &#x5D5;&#x5DE;&#x5D0;&#x5DE;&#x5DF; &#x5E4;&#x5D9;&#x5DC;&#x5D0;&#x5D8;&#x5D9;&#x5E1; &#x5D5;&#x5D9;&#x5D5;&#x5D2;&#x5D4; &#x5D5;&#x5E2;&#x5D5;&#x5E1;&#x5E7; &#x5D1;&#x5DE;&#x5E7;&#x5E6;&#x5D5;&#x5E2; &#x5DE;&#x5E9;&#x5E0;&#x5EA; 1999. &#x5DC;&#x5D9;&#x5D5;&#x5D5;&#x5D4; &#x5D0;&#x5EA; &#x5DC;&#x5D4;&#x5E7;&#x5EA; &#x5DE;&#x5D9;&#x5D5;&#x5DE;&#x5E0;&#x5D4; &#x5D1;&#x5DE;&#x5E9;&#x5DA; 12 &#x5E9;&#x5E0;&#x5D9;&#x5DD; &#x5D1;&#x5E1;&#x5D9;&#x5D1;&#x5D5;&#x5D1;&#x5D9; &#x5D4;&#x5D5;&#x5E4;&#x5E2;&#x5D5;&#x5EA; &#x5E9;&#x5DC;&#x5D4;&#x5DD; &#x5D1;&#x5D7;&#x5D5;"&#x5DC; &#x5DB;&#x5DE;&#x5D0;&#x5DE;&#x5DF; &#x5D5;&#x5DE;&#x5D8;&#x5E4;&#x5DC; &#x5D2;&#x5D5;&#x5E4;&#x5E0;&#x5D9;. &#x5D1;&#x5E2;&#x5DC; &#x5E7;&#x5DC;&#x5D9;&#x5E0;&#x5D9;&#x5E7;&#x5D4; &#x5D5;&#x5DE;&#x5D8;&#x5E4;&#x5DC; &#x5D1;&#x5D0;&#x5D5;&#x5E4;&#x5DF; &#x5E4;&#x5E8;&#x5D8;&#x5D9; &#x5D6;&#x5D4; &#x5E9;&#x5E0;&#x5D9;&#x5DD; &#x5E8;&#x5D1;&#x5D5;&#x5EA; &#x5D1;&#x5DB;&#x5D9;&#x5D5;&#x5D5;&#x5DF; &#x5EA;&#x5E8;&#x5E4;&#x5D9;-&#x5E4;&#x5EA;&#x5D5;&#x5DC;&#x5D5;&#x5D2;&#x5D9;, &#x5E9;&#x5D9;&#x5E7;&#x5D5;&#x5DD; &#x5D5;&#x5EA;&#x5D7;&#x5D6;&#x5D5;&#x5E7;&#x5D4; &#x5E1;&#x5E4;&#x5D5;&#x5E8;&#x5D8;&#x5D9;&#x5D1;&#x5D9;&#x5EA;. &#x5DE;&#x5D6;&#x5D4; 10 &#x5E9;&#x5E0;&#x5D9;&#x5DD; &#x5DE;&#x5DC;&#x5DE;&#x5D3; &#x5E2;&#x5D9;&#x5E1;&#x5D5;&#x5D9; &#x5EA;&#x5D0;&#x5D9;&#x5DC;&#x5E0;&#x5D3;&#x5D9; &#x5D1;&#x5E7;&#x5D5;&#x5E8;&#x5E1;&#x5D9;&#x5DD; &#x5E9;&#x5DE;&#x5E4;&#x5D9;&#x5E7; &#x5E2;&#x5E6;&#x5DE;&#x5D0;&#x5D9;&#x5EA;. &#x5DE;&#x5E0;&#x5D7;&#x5D4; &#x5E9;&#x5D9;&#x5E2;&#x5D5;&#x5E8;&#x5D9;&#x5DD; &#x5E7;&#x5D1;&#x5D5;&#x5E6;&#x5EA;&#x5D9;&#x5D9;&#x5DD; &#x5D1;&#x5E1;&#x5D3;&#x5E0;&#x5D0;&#x5D5;&#x5EA; &#x5D5;&#x5E4;&#x5E1;&#x5D8;&#x5D9;&#x5D1;&#x5DC;&#x5D9;&#x5DD; &#x5D1;&#x5E0;&#x5D5;&#x5E9;&#x5D0;&#x5D9; &#x5EA;&#x5E0;&#x5D5;&#x5E2;&#x5D4; (&#x5E4;&#x5D9;&#x5DC;&#x5D0;&#x5D8;&#x5D9;&#x5E1;/&#x5D9;&#x5D5;&#x5D2;&#x5D4;) &#x5DE;&#x5D2;&#x5E2; &#x5DE;&#x5E8;&#x5E4;&#x5D0; (&#x5E2;&#x5D9;&#x5E1;&#x5D5;&#x5D9; &#x5EA;&#x5D0;&#x5D9;&#x5DC;&#x5E0;&#x5D3;&#x5D9;) &#x5D5;&#x5E2;&#x5D1;&#x5D5;&#x5D3;&#x5D4; &#x5E4;&#x5D9;&#x5D6;&#x5D9;&#x5EA; &#x5E2;&#x5DD; &#x5E9;&#x5D5;&#x5EA;&#x5E4;&#x5D9;&#x5DD; (&#x5E4;&#x5E8;&#x5D8;&#x5E0;&#x5E8; &#x5E1;&#x5D8;&#x5E8;&#x5E6;'&#x5D9;&#x5D2;/&#x5D0;&#x5E7;&#x5E8;&#x5D5;&#x5D1;&#x5D0;&#x5DC;&#x5D0;&#x5E0;&#x5E1;).</description></oembed>
