summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/fivefilters/readability.php/test/test-pages/wapo-2/source.html
blob: 1d4dd7bdb7d43074cc2d3ac24fadf9450380cbc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
<!DOCTYPE html>
<html>
    
    <head>
        <meta name="eomportal-uuid" content="ca175d64-cd76-11e4-a2a7-9517a3a70506"/>
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
        <meta charset="utf-8"/>
        <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes, minimum-scale=0.5, maximum-scale=2.0"/>
        <meta name="keywords" content="business"/>
        <meta name="description" content="Few foreign leaders have so brazenly stood up to President Obama and the relationship could face its next test this month."/>
        <meta name="news_keywords" content="business"/>
        <meta name="twitter:site" value="@WashingtonPost"/>
        <meta name="twitter:card" content="summary_large_image"/>
        <meta property="og:description" content="Few foreign leaders have so brazenly stood up to President Obama and the relationship could face its next test this month."/>
        <meta property="og:type" content="article"/>
        <meta property="og:site_name" content="Washington Post"/>
        <meta property="og:image" content="http://img.washingtonpost.com/rw/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1138.jpg"/>
        <meta property="og:title" content="Where do strained U.S.-Israeli relations go after Netanyahu’s victory?"/>
        <meta property="article:publisher" content="https://www.facebook.com/washingtonpost"/>
        <meta property="fb:admins" content="1513210492"/>
        <meta property="fb:app_id" content="41245586762"/>
        <meta property="fb:admins" content="1244584375"/>
        <meta property="fb:admins" content="4403963"/>
        <meta property="fb:admins" content="2724956"/>
        <meta property="fb:admins" content="500835072"/>
        <meta property="og:url" content="http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"/>
        <meta name="section" content="/world/middle_east"/>
        <meta name="commercialNode" content="/business/economy"/>
        <link rel="canonical" href="http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"/>
        <link rel="alternate" href="android-app://com.washingtonpost.android/wp-android/www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"/>
        <title>Where do strained U.S.-Israeli relations go after Netanyahu’s victory?
            - The Washington Post</title>
        <meta property="twitter:creator" content="@StevenMufson"/>
        <!--[if (gt IE 8) | (IEMobile)]>
            <!-->
            <link rel="stylesheet" href="/pb/resources/css/headerfonts.css?_=f4b3d2"/>
        <!--<![endif]-->
        <!--[if (lt IE 9) & (!IEMobile)]><link rel="stylesheet" href="/pb/resources/css/headerfonts_ie.css?_=f4b3d2"/><![endif]-->
            <link rel="stylesheet" href="/pb/resources/compact/type/default/styles/bc9d233e62887b11846ddc11bf4175c8.css?_=f4b3d2"/>
            <link rel="stylesheet" href="/pb/resources/compact/template/rZcHWoZzuToaTieQLcQMUOw/styles/ca81b2e4d5b093e7f72fbfe70484081e.css?_=f4b3d2"/>
            <link rel="stylesheet" href="/pb/resource/style-rZcHWoZzuToaTieQLcQMUOw-6de5b76f.css?_=f4b3d2"/>
            <script>
                window.head_conf={head:"TWPHead"};
            </script>
            <script src="/pb/resources/js/head.min.js"></script>
            <script type="text/javascript" src="/pb/resources/compact/type/default/headJS/068d3c1f0e80ba3b4dc4a0d195ab9bcb.js?_=f4b3d2"></script>
            <script type="text/javascript" src="/pb/resource/headjs-rZcHWoZzuToaTieQLcQMUOw-6de5b76f.js?_=f4b3d2"></script>
            <script>
                (function(r){r.pageName="";r.templateName="rZcHWoZzuToaTieQLcQMUOw";r.contextPath="/pb";r.isAdmin=false;r.layoutEngineName="off";r.environment="production"}(window.wp_pb||{}));var commercialNode="/business/economy";
            </script>
            <script type="text/javascript">
                wp_pb=window.wp_pb||{};var isMobile={Android:function(){return navigator.userAgent.match(/Android/i)?true:false},AndroidOld:function(){return navigator.userAgent.match(/Android 2.3.3/i)?true:false},AndroidTablet:function(){return(navigator.userAgent.match(/Android/i)&&!navigator.userAgent.match(/Mobile/i))?true:false},Kindle:function(){return navigator.userAgent.match(/Kindle/i)?true:false},KindleFire:function(){return navigator.userAgent.match(/KFOT/i)?true:false},Silk:function(){return navigator.userAgent.match(/Silk/i)?true:false},BlackBerry:function(){return navigator.userAgent.match(/BlackBerry/i)?true:false},iOS:function(){return navigator.userAgent.match(/iPhone|iPad|iPod/i)?true:false},iPhone:function(){return navigator.userAgent.match(/iPhone|iPod/i)?true:false},iPad:function(){return navigator.userAgent.match(/iPad/i)?true:false},Windows:function(){return navigator.userAgent.match(/IEMobile/i)?true:false},FirefoxOS:function(){return(navigator.userAgent.match(/Mozilla/i)&&navigator.userAgent.match(/Mobile/i))?true:false},Retina:function(){return(window.retina||window.devicePixelRatio>1)?true:false},any:function(){return(isMobile.Android()||isMobile.Kindle()||isMobile.KindleFire()||isMobile.Silk()||isMobile.BlackBerry()||isMobile.iOS()||isMobile.Windows()||isMobile.FirefoxOS())},all:function(){return(navigator.userAgent)},tablet:function(){return(isMobile.AndroidTablet()||isMobile.iPad()||isMobile.Kindle()||isMobile.KindleFire()||isMobile.Silk())}};var mobile_browser=isMobile.any()?1:0,iphone_browser=isMobile.iPhone()?1:0,ipad_browser=isMobile.iPad()?1:0,android_browser=isMobile.Android()?1:0,android233_browser=isMobile.AndroidOld()?1:0,kindle_browser=isMobile.Kindle()?1:0,retina_browser=isMobile.Retina()?1:0,mobile_tablet=isMobile.tablet()?1:0;TWP=window.TWP||{};TWP.PostTV=TWP.PostTV||{};TWP.PostTV.BrowserInfo=TWP.PostTV.BrowserInfo||{init:function(){this.browser=this.searchString(this.dataBrowser)||"An unknown browser";this.version=this.searchVersion(navigator.userAgent)||this.searchVersion(navigator.appVersion)||"an unknown version";this.OS=this.searchString(this.dataOS)||"an unknown OS"},searchString:function(data){for(var i=0;i&lt;data.length;i++){var dataString=data[i].string;var dataProp=data[i].prop;this.versionSearchString=data[i].versionSearch||data[i].identity;if(dataString){if(dataString.indexOf(data[i].subString)!=-1){return data[i].identity}}else{if(dataProp){return data[i].identity}}}},searchVersion:function(dataString){var index=dataString.indexOf(this.versionSearchString);if(index==-1){return}return parseFloat(dataString.substring(index+this.versionSearchString.length+1))},dataBrowser:[{string:navigator.userAgent,subString:"Chrome",identity:"Chrome"},{string:navigator.userAgent,subString:"OmniWeb",versionSearch:"OmniWeb/",identity:"OmniWeb"},{string:navigator.vendor,subString:"Apple",identity:"Safari",versionSearch:"Version"},{prop:window.opera,identity:"Opera",versionSearch:"Version"},{string:navigator.vendor,subString:"iCab",identity:"iCab"},{string:navigator.vendor,subString:"KDE",identity:"Konqueror"},{string:navigator.userAgent,subString:"Firefox",identity:"Firefox"},{string:navigator.vendor,subString:"Camino",identity:"Camino"},{string:navigator.userAgent,subString:"Netscape",identity:"Netscape"},{string:navigator.userAgent,subString:"MSIE",identity:"Explorer",versionSearch:"MSIE"},{string:navigator.userAgent,subString:"Gecko",identity:"Mozilla",versionSearch:"rv"},{string:navigator.userAgent,subString:"Mozilla",identity:"Netscape",versionSearch:"Mozilla"}],dataOS:[{string:navigator.platform,subString:"Win",identity:"Windows"},{string:navigator.platform,subString:"Mac",identity:"Mac"},{string:navigator.userAgent,subString:"iPhone",identity:"iPhone"},{string:navigator.userAgent,subString:"iPad",identity:"iPad"},{string:navigator.userAgent,subString:"Android",identity:"Android"},{string:navigator.platform,subString:"Linux",identity:"Linux"}]};TWP.PostTV.BrowserInfo.init();TWP.PostTV.getCookie=function(name){var nameEQ=name+"=";var ca=document.cookie.split(";");for(var i=0;i&lt;ca.length;i++){var c=ca[i];while(c.charAt(0)==" "){c=c.substring(1,c.length)}if(c.indexOf(nameEQ)==0){return c.substring(nameEQ.length,c.length)}}return null};wp_pb.BrowserInfo=wp_pb.BrowserInfo||{};wp_pb.BrowserInfo.mobile_browser=mobile_browser;wp_pb.BrowserInfo.tablet=mobile_tablet;wp_pb.BrowserInfo.OS=TWP.PostTV.BrowserInfo.OS;wp_pb.BrowserInfo.browser=TWP.PostTV.BrowserInfo.browser;wp_pb.BrowserInfo.version=TWP.PostTV.BrowserInfo.version;wp_pb.BrowserInfo.OS=TWP.PostTV.BrowserInfo.OS;
            </script>
            <script type="text/javascript">
                if(typeof wp_meta_data=="undefined"){try{wp_meta_data={platform:"pagebuilder",showAds:true,showPreRollAds:false,isHomepage:false,isErrorPage:false,isMultimedia:false,wt:"article_story",page_id:["ca175d64-cd76-11e4-a2a7-9517a3a70506"],author:["Steven Mufson"],keywords:["business"],clavis:{keywords:["Russian President Vladimir Putin","Netanyahu","Obama","Republicans","Authority","leader","Israel","Iran","deal","relation","issue","minister","program","state","peace","Martin Indyk","month","United States","time","Gaza conflict","year","breakthrough","UN General Assembly","negotiation","election"],topics:["National Security","President and Administration","Wars, Conflicts and Terrorism","International Relations","Religion and Belief"],ct:["sz","lf","qa","iw","rj"]},breaking_news:[false],contentType:["CompoundStory"]}}catch(e){}};
            </script>
            <script type="text/javascript">
                (function(){TWP=(typeof TWP=="undefined")?{}:TWP;TWP.Data=(typeof TWP.Data=="undefined")?{}:TWP.Data;TWP.Data["Tracking"]={init:function(){this.props={};this.props.platform="pagebuilder";this.props.page_type="";this.props.page_name="world:article - 9517a3a70506 - 20150318 - netanyahu-win-points-to-two-more-years-of-strained-u-s-israel-ties";this.props.section="world";this.props.channel="wp - world";this.props.subsection="world - middle_east";this.props.hierarchy="world|article";this.props.content_type="article";this.props.story_type="";this.props.headline="Where do strained U.S.-Israeli relations go after Netanyahu’s victory?";this.props.author="Steven Mufson";this.props.source="The Washington Post";this.props.content_id="ca175d64-cd76-11e4-a2a7-9517a3a70506";this.props.page_num="";this.props.op_ranking="no sentiment - no ideology";this.props.columnname="";this.props.blogname="";this.props.published="";this.props.news_or_commercial="News";this.props.commercial_node="/business/economy";this.props.content_category="National-Economy";this.props.sectionfront="";this.props.track_scrolling=true}};TWP.Data["Tracking"].init()})();
            </script>
            <script id="twp-identity" src="//js.washingtonpost.com/1h/twp-global.js"></script>
    </head>
    
    <body class="pb-theme-normal pb-full-fluid">
        <script type="text/javascript" src="//js.washingtonpost.com/wp-stat/otto/js/mbox.js"></script>
        <div class="mboxDefault"></div>
        <div class="pb-container " id="pb-root">
            <div id="article-business_1399492794482_885" class="moat-trackable pb-layout-item pb-feature pb-three pb-f-page-header-v2 pb-f-theme-normal"
            data-pb-async="false" data-pb-columns="3" data-pb-name="page-header-v2"
            data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
            data-pb-content-editable="" moat-id="page-header-v2|article-business">
                <!--[if lt IE 9]>
                    <style>
                        .lt-ie9 body.left-menu #site-menu{left:-50px}.lt-ie9 #wp-logo{background:transparent url(/pb/resources/img/washingtonpost_black_32.png) no-repeat 0 8px}.lt-ie9 header.dark #wp-logo{background:transparent url(/pb/resources/img/washingtonpost_white_32.png) no-repeat 0 8px}
                    </style>
                <![endif]-->
                <!--[if lt IE 8]>
                    <header class="ie ie7 lte9 lte8 lte7 abt-not-loaded ">
                    <![endif]-->
                    <!--[if IE 8]>
                        <header class="ie ie8 lte9 lte8 abt-not-loaded ">
                        <![endif]-->
                        <!--[if IE 9]>
                            <header class="ie ie9 lte9 abt-not-loaded ">
                            <![endif]-->
                            <!--[if gt IE 9]>
                                <header class="ie abt-not-loaded ">
                                <![endif]-->
                                <!--[if !IE]><!-->
                                    <header id="wp-header" class="nie abt-not-loaded ">
                                    <!--<![endif]-->
                                    <nav id="site-menu" class="nav-menu">
                                        <form id="nav-search-mobile" method="get" action="http://www.washingtonpost.com/pb/newssearch/">
                                            <button type="submit" class="fa fa-search"></button>
                                            <input type="text" placeholder="Search" name="query" autocomplete="off"/>
                                        </form>
                                        <ul id="site-menu-sections">
                                            <li id="nav-screenreader-link"><a class="screenreader-link" href="http://www.washingtonpost.com/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html?resType=accessibility">Accessibility for screenreader</a>
                                            </li>
                                            <li id="nav-sign-in-mobile" class="hidden mobile-only"><a href="#">Sign In</a>
                                            </li>
                                            <li id="nav-user-mobile" class="hidden mobile-only"><a href="#">Username</a>
                                            </li>
                                            <li><a href="http://www.posttv.com/?nid=top_pb_posttv">PostTV</a>
                                            </li>
                                            <li><a href="http://www.washingtonpost.com/politics?nid=top_pb_politics">Politics</a>
                                            </li>
                                            <li><a href="http://www.washingtonpost.com/opinions?nid=top_pb_opinions">Opinions</a>
                                            </li>
                                            <li><a href="http://www.washingtonpost.com/local?nid=top_pb_local">Local</a>
                                            </li>
                                            <li><a href="http://www.washingtonpost.com/sports?nid=top_pb_sports">Sports</a>
                                            </li>
                                            <li><a href="http://www.washingtonpost.com/national?nid=top_pb_national">National</a>
                                            </li>
                                            <li><a href="http://www.washingtonpost.com/world?nid=top_pb_world">World</a>
                                            </li>
                                            <li><a href="http://www.washingtonpost.com/business?nid=top_pb_business">Business</a>
                                            </li>
                                            <li><a href="http://www.washingtonpost.com/business/technology?nid=top_pb_technology">Tech</a>
                                            </li>
                                            <li><a href="http://www.washingtonpost.com/lifestyle?nid=top_pb_lifestyle">Lifestyle</a>
                                            </li>
                                            <li><a href="http://www.washingtonpost.com/entertainment?nid=top_pb_entertainment">Entertainment</a>
                                            </li>
                                            <li><a href="http://www.washingtonpost.com/classifieds?nid=top_pb_classifieds">Classifieds</a>
                                            </li>
                                            <li><a href="http://www.washingtonpost.com/jobs?nid=top_pb_jobs">Jobs</a>
                                            </li>
                                            <li><a href="http://www.washingtonpost.com/realestate?nid=top_pb_realestate">Real Estate</a>
                                            </li>
                                            <li><a href="http://www.washingtonpost.com/goingoutguide?nid=top_pb_goingoutguide">Events</a>
                                            </li>
                                            <li><a href="http://www.washingtonpost.com/rentals?nid=top_pb_rentals">Rentals</a>
                                            </li>
                                            <li><a href="http://www.washingtonpost.com/cars/?nid=top_pb_cars">Cars</a>
                                            </li>
                                            <li><a href="http://www.washingtonpost.com/sf/brand-connect/?nid=top_pb_brandconnect">WP BrandConnect</a>
                                            </li>
                                            <li id="nav-subscribe-mobile" class="hidden mobile-only"><a href="https://subscribe.washingtonpost.com/acquisition/?nid=top_pb_subscribe&amp;destination=http://www.washingtonpost.com/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html">Subscribe</a>
                                            </li>
                                            <li><a href="https://account.washingtonpost.com/actmgmt/registration/addnewsletter/default/">Newsletters &amp; Alerts</a>
                                            </li>
                                        </ul>
                                        <div id="site-menu-info">
                                            <p class="site-attribution"> <a href="http://www.washingtonpost.com"><strong>washingtonpost.com</strong></a> 
                                                <span
                                                class="copyright">© 1996-2015 The Washington Post</span>
                                            </p>
                                            <p><a href="http://www.washingtonpost.com/actmgmt/help/">Help and Contact Us</a>
                                            </p>
                                            <p><a href="http://www.washingtonpost.com/terms-of-service/2011/11/18/gIQAldiYiN_story.html">Terms of Service</a>
                                            </p>
                                            <p><a href="http://www.washingtonpost.com/privacy-policy/2011/11/18/gIQASIiaiN_story.html">Privacy Policy</a>
                                            </p>
                                            <p><a href="http://www.washingtonpost.com/discussion-and-submission-guidelines/2011/11/21/gIQAuvIbiN_story.html">Submissions and Discussion Policy</a>
                                            </p>
                                            <p><a href="http://www.washingtonpost.com/rss-terms-of-service/2012/01/16/gIQAadFYAQ_story.html">RSS Terms of Service</a>
                                            </p>
                                            <p><a href="http://www.washingtonpost.com/how-can-i-opt-out-of-online-advertising-cookies/2011/11/18/gIQABECbiN_story.html">Ad Choices</a>
                                            </p>
                                        </div>
                                    </nav>
                                    <div id="user-menu" class="nav-menu">
                                        <ul></ul>
                                    </div>
                                    <div id="nav-bar">
                                        <div class="nav-left nav-section">
                                            <div id="site-menu-btn" class="nav-btn"> <span class="nav-btn-label">Sections</span>  <i class="fa fa-bars"></i> 
                                            </div>
                                            <div id="wp-logo"> <a href="http://www.washingtonpost.com?nid=top_pb_wplogo">The Washington Post</a> 
                                            </div>
                                            <div id="wp-logo-for-print">
                                                <img src="//www.washingtonpost.com/pb/resources/img/washingtonpost_black_32.png"
                                                alt="The Washington Post"/>
                                            </div>
                                        </div>
                                        <div class="nav-middle nav-section">
                                            <div id="nav-page-title" data-show-on-scroll="true">Where do strained U.S.-Israeli relations go after Netanyahu’s victory?</div>
                                        </div>
                                        <div class="nav-right nav-section">
                                            <form id="nav-search" method="get" action="http://www.washingtonpost.com/newssearch/">
                                                <input type="text" placeholder="Search" name="query" autocomplete="off"/>
                                                <button type="submit" class="fa fa-search"></button>
                                            </form>
                                            <div id="nav-ad">
                                                <div id="wpni_adi_88x31"></div>
                                            </div> <a id="nav-sign-in" class="nav-btn hidden" href="#">Sign In</a> 
                                            <div id="nav-user"
                                            class="nav-btn hidden" data-menu="user-menu" data-show-identity="true"> <span class="username">Username</span>  <i class="fa fa-caret-down"></i> 
                                            </div> <a id="nav-subscribe" class="nav-btn hidden" href="https://subscribe.washingtonpost.com/acquisition/?nid=top_pb_subscribe&amp;destination=http://www.washingtonpost.com/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html">Subscribe</a> 
                                        </div>
                                    </div>
                                    </header>
                                    <div id="wp-topper" class="abt-not-loaded"> <a id="wp-logo-large" href="http://www.washingtonpost.com?nid=top_pb_wplogo"></a> 
                                        <div
                                        class="top-timestamp"></div>
            </div>
        </div>
        <div id="article-business_1399492818975_810" class="moat-trackable pb-layout-item pb-feature pb-three pb-f-ad-leaderboard pb-f-theme-normal"
        data-pb-async="false" data-pb-columns="3" data-pb-name="ad-leaderboard"
        data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
        data-pb-content-editable="" moat-id="ad-leaderboard|article-business">
            <div class="leaderboard ad-hideable">
                <div id="slug_leaderboard" data-ad-type="leaderboard" class="pb-ad-container"
                style="display:none;"></div>
            </div>
            <div class="mobile-leaderboard ad-hideable">
                <div id="slug_mob_av" data-ad-type="mob_av" style="display:none;"></div>
            </div>
            <div class="mobile-fixed ad-hideable">
                <div id="slug_t" data-ad-type="t" class="pb-ad-container-mobile" style="display:none;"></div>
            </div>
        </div>
        <div id="article-business_1401912612813_574" class="moat-trackable pb-layout-item pb-feature pb-three pb-f-article-article-topper pb-f-theme-normal"
        data-pb-async="false" data-pb-columns="3" data-pb-name="article-article-topper"
        data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
        data-pb-content-editable="" moat-id="article-article-topper|article-business">
            <div id="article-topper" class="article-topper">
                <div class="headline-kicker"><a href="/world/middle-east">Middle East</a>
                </div>
                 <h1>Where do strained U.S.-Israeli relations go after Netanyahu’s victory?</h1> 
                <div class="clear"></div>
            </div>
        </div>
        <div id="article-business_1409076983270_679" class="moat-trackable pb-layout-item pb-feature pb-three pb-f-sharebars-top-share-bar pb-f-theme-normal"
        data-pb-async="false" data-pb-columns="3" data-pb-name="sharebars-top-share-bar"
        data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
        data-pb-content-editable="" moat-id="sharebars-top-share-bar|article-business">
            <style>
                .hideText{position:absolute;left:-10000px}
            </style>
            <div id="top-sharebar_7575" class="top-sharebar-wrapper color-top unprocessed"
            data-postshare="facebook,twitter">
                <div class="social-tools-wrapper">
                    <div class="social-tools-primary margin-top">
                        <div class="social-tools "> <a onclick="try{this.postShare.callPostShare(this, this.postShareObject, 'https://www.facebook.com/sharer/sharer.php?u=', 'http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html', '' , 'width=658,height=354,scrollbars=no');}catch(err){ window.open('https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fwapo.st%2F1Era2Lw','share_facebook','width=658,height=354,scrollbars=no'); }return false;"
                            tabindex="_tbidx_"> <div class="facebook tool first desktop mobile"><span class="hideText">Share on Facebook</span><span class="fa fa-facebook-square"></span></div> </a>
                            <a
                            onclick="try{this.postShare.callPostShare(this, this.postShareObject, 'https://twitter.com/share?url=', 'http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html', '&amp;text=Where+do+strained+U.S.-Israeli+relations+go+after+Netanyahu%E2%80%99s+victory%3F' , 'width=550, height=350, scrollbars=no');}catch(err){ window.open('https://twitter.com/share?url=http%3A%2F%2Fwapo.st%2F1Era2Lw&amp;text=Where+do+strained+U.S.-Israeli+relations+go+after+Netanyahu%E2%80%99s+victory%3F','share_twitter','width=550, height=350, scrollbars=no'); }return false;"
                            tabindex="_tbidx_">
                                <div class="twitter tool desktop mobile"><span class="hideText">Share on Twitter</span><span class="fa fa-twitter"></span>
                                </div>
                                </a><a onclick="try{this.postShare.callPostShare(this, this.postShareObject, 'http://www.linkedin.com/shareArticle?mini=true&amp;url=', 'http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html', '&amp;title=Where+do+strained+U.S.-Israeli+relations+go+after+Netanyahu%E2%80%99s+victory%3F' , 'width=830,height=460,scrollbars=no');}catch(err){ window.open('http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwapo.st%2F1Era2Lw&amp;title=Where+do+strained+U.S.-Israeli+relations+go+after+Netanyahu%E2%80%99s+victory%3F','share_linkedin','width=830,height=460,scrollbars=no'); }return false;"
                                tabindex="_tbidx_"> <div class="linkedin tool desktop"><span class="hideText">Share on LinkedIn</span><span class="fa fa-linkedin"></span></div> </a>
                                <a
                                onclick="try{this.postShare.callPostShare(this, this.postShareObject, 'mailto:?subject=Where%20do%20strained%20U.S.-Israeli%20relations%20go%20after%20Netanyahu%E2%80%99s%20victory%3F from The Washington Post&amp;body=', 'http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html', '' , null);}catch(err){ window.location.href = 'mailto:?subject=Where%20do%20strained%20U.S.-Israeli%20relations%20go%20after%20Netanyahu%E2%80%99s%20victory%3F from The Washington Post&amp;body=http%3A%2F%2Fwapo.st%2F1Era2Lw'; }return false;"
                                tabindex="_tbidx_">
                                    <div class="email tool desktop"><span class="hideText">Share via Email</span><span class="fa fa-envelope"></span>
                                    </div>
                                    </a><a onclick="return false;"> <div class="more tool last desktop mobile"><span class="hideText" tabindex="_tbidx_">More Options</span><span class="fa fa-plus"> </span></div> </a>
                        </div>
                    </div>
                    <div class="social-tools-additional margin-top">
                        <div class="social-tools "> <a onclick="try{this.postShare.callPostShare(this, this.postShareObject, 'mailto:?subject=Where%20do%20strained%20U.S.-Israeli%20relations%20go%20after%20Netanyahu%E2%80%99s%20victory%3F from The Washington Post&amp;body=', 'http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html', '' , null);}catch(err){ window.location.href = 'mailto:?subject=Where%20do%20strained%20U.S.-Israeli%20relations%20go%20after%20Netanyahu%E2%80%99s%20victory%3F from The Washington Post&amp;body=http%3A%2F%2Fwapo.st%2F1Era2Lw'; }return false;"
                            tabindex="_tbidx_"> <div class="email tool first mobile"><span class="hideText">Share via Email</span><span class="fa fa-envelope"></span></div> </a>
                            <a
                            onclick="try{this.postShare.callPostShare(this, this.postShareObject, 'whatsapp://send?text=Where%20do%20strained%20U.S.-Israeli%20relations%20go%20after%20Netanyahu%E2%80%99s%20victory%3F - ', 'http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html', '' , null);}catch(err){ window.location.href = 'whatsapp://send?text=Where%20do%20strained%20U.S.-Israeli%20relations%20go%20after%20Netanyahu%E2%80%99s%20victory%3F - http%3A%2F%2Fwapo.st%2F1Era2Lw'; }return false;"
                            tabindex="_tbidx_">
                                <div class="whatsapp tool mobile"><span class="hideText">Share on Whatsapp</span><span class="fa fa-whatsapp"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAEhwAABIcBblSwhwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAKMSURBVEiJnZVLSFVRFIb/czORKEqjJI0EoVKILMxB0cBJjYJGRhMD6TVs0kAhpw2qSdkoCGoSQkENehBKUSARCtqggiJudUGjh4+KEDW/BmftXB3OuXr7YbH3Wa9/r33WWScCtAg2S9olqdnWHZLGJA05GZb0KzMDkCV1QD9LwzhwJCtXlFHJCUkXJK2SNCnpiZ14UNKIpA2SWqyyPZK2WdxdSScljRarZAXw0J3wFrC+SLVBOoBJi5kADnh70vmyOX4GDi0huZda4J4jqk0j2QfMAzNAU4kEXsJNPEiSrAEKZux2AduBO8ClEkg2uqs77kl6TDkElJkuB3xgATtLIOqwmO9ApYAI+GTK/c5xN//iYonX9sri2nPWhtWSkPTcNV51oq1bMj+2dDyz9WBO0lZ7eCtpyjkNuP28pM4SSYZsbchJqrGHwYTTF0lPbT+peHSUgpCvJiep3CVN4pSkGUlVkq6WSDJua0VOUt4eGlMcRyR12b5N0hlJkbMvl1SZQdJs65jvokJGl0RAr+uyfuLhWQEMANPWecnxc878HwuoAmZNUZ9BtAy44Yh+APlEi38zvxDzyPRdQRESXCvS9xFwzJKlIe98G61CgIagbDHFHNBQhEjAOqALeOEI3rEwEcqAQdNfJzEg35uhbRESL1uI51vkdN2WpwCs9iT1ZvhJ/E/53wncTjzFwY2oYOw0Q68LaLJTLiV5NfG0Dujx9rAZNuNZ4LzdccB9oBUoTyReCewFTgNfzXcKOJo8RLjXNEwQ/8QC5oy8D3gN/E749wGb0ir1LwrgI/GH1Urc8/VW3WjKIaaJ/z9XgMNpyYNEwE1JbyTd1sLkTMNaSXWSaiUVJL2UNFvE/y/+AObPwGxY9EFMAAAAAElFTkSuQmCC"/></span>
                                </div>
                                </a><a onclick="try{this.postShare.callPostShare(this, this.postShareObject, '//pinterest.com/pin/create/button/?url=', 'http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html', '&amp;media=http://img.washingtonpost.com/rw/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1138.jpg&amp;description=Where+do+strained+U.S.-Israeli+relations+go+after+Netanyahu%E2%80%99s+victory%3F' , 'width=550,height=450,scrollbars=no');}catch(err){ window.open('//pinterest.com/pin/create/button/?url=http%3A%2F%2Fwapo.st%2F1Era2Lw&amp;media=http://img.washingtonpost.com/rw/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1138.jpg&amp;description=Where+do+strained+U.S.-Israeli+relations+go+after+Netanyahu%E2%80%99s+victory%3F','share_linkedin','width=550,height=450,scrollbars=no'); }return false;"
                                tabindex="_tbidx_"> <div class="pinterest tool desktop mobile"><span class="hideText">Share on Pinterest</span><span class="fa fa-pinterest"></span></div> </a>
                                <a
                                onclick="try{this.postShare.callPostShare(this, this.postShareObject, 'https://plus.google.com/share?url=', 'http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html', '' , 'width=832,height=472,scrollbars=no');}catch(err){ window.open('https://plus.google.com/share?url=http%3A%2F%2Fwapo.st%2F1Era2Lw','share_google-plus','width=832,height=472,scrollbars=no'); }return false;"
                                tabindex="_tbidx_">
                                    <div class="google-plus tool desktop mobile"><span class="hideText">Share on Google Plus</span><span class="fa fa-google-plus"></span>
                                    </div>
                                    </a><a onclick="try{this.postShare.callPostShare(this, this.postShareObject, 'http://www.linkedin.com/shareArticle?mini=true&amp;url=', 'http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html', '&amp;title=Where+do+strained+U.S.-Israeli+relations+go+after+Netanyahu%E2%80%99s+victory%3F' , 'width=830,height=460,scrollbars=no');}catch(err){ window.open('http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwapo.st%2F1Era2Lw&amp;title=Where+do+strained+U.S.-Israeli+relations+go+after+Netanyahu%E2%80%99s+victory%3F','share_linkedin','width=830,height=460,scrollbars=no'); }return false;"
                                    tabindex="_tbidx_"> <div class="linkedin tool mobile"><span class="hideText">Share on LinkedIn</span><span class="fa fa-linkedin"></span></div> </a>
                                    <a
                                    onclick="try{this.postShare.callPostShare(this, this.postShareObject, 'http://www.tumblr.com/share/link?url=', 'http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html', '&amp;name=Where+do+strained+U.S.-Israeli+relations+go+after+Netanyahu%E2%80%99s+victory%3F&amp;description=' , 'width=550,height=450,scrollbars=no');}catch(err){ window.open('http://www.tumblr.com/share/link?url=http%3A%2F%2Fwapo.st%2F1Era2Lw&amp;name=Where+do+strained+U.S.-Israeli+relations+go+after+Netanyahu%E2%80%99s+victory%3F&amp;description=','share_tumblr','width=550,height=450,scrollbars=no'); }return false;"
                                    tabindex="_tbidx_">
                                        <div class="tumblr tool last desktop"><span class="hideText">Share on Tumblr</span><span class="fa fa-tumblr"></span>
                                        </div>
                                        </a>
                        </div>
                    </div>
                </div>
                <div id="slug_tiffany_tile" data-ad-type="tiffany_tile" class="left" style="display:none;padding-left:20px !important;height:auto;max-height:60px;overflow:hidden;">
                    <div id="wpni_adi_tiffany_tile" class="ads slug tiffany_tile header"></div>
                </div>
                <div class=" utility-tools-wrapper">
                    <div class="utility-tools-primary margin-top">
                        <div class="social-tools ">
                            <div class="textresizer tool first mobile"><span class="hideText" tabindex="_tbidx_">Resize Text</span><span class="fa fa-font"></span>
                            </div><a onclick="window.print();" tabindex="_tbidx_"> <div class="print tool mobile"><span class="hideText">Print Article</span><span class="fa fa-print"></span></div> </a>
                            <a
                            href="#" onclick="wp_pb.report('comments', 'showComments',{elm:$(this),guid:'http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html'}); return false;"
                            tabindex="_tbidx_">
                                <div class="comments tool last mobile"><span class="hideText">Comments</span><span class="fa fa-comments"></span> 
                                    <span
                                    id="echo_container" class="echo_container comment-vars echo-counter text"
                                    guid="http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"></span>
                                </div>
                                </a>
                        </div>
                    </div>
                </div>
            </div>
            <div class="clear"></div>
        </div>
        <div class="pb-scatter">
            <div id="main-content" class="pb-layout-item pb-chain pb-two main-content"
            data-pb-columns="2">
                <div id="article-business_1401912605633_632" class="moat-trackable pb-feature pb-chained pb-f-article-article-body pb-f-theme-normal"
                data-pb-async="false" data-pb-columns="" data-pb-name="article-article-body"
                data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
                data-pb-content-editable="" moat-id="article-article-body|article-business">
                    <div id="article-body" class="article-body">
                        <div class="inline-content inline-photo inline-photo-normal"> <a name="1c164a7079bfe20ebd611d79f96418b5a225cbc6"></a> 
                            <img class="unprocessed"
                            src="https://img.washingtonpost.com/rf/image_400w/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1140.jpg?uuid=zLIZQs2KEeSip5UXo6cFBg"
                            data-hi-res-src="https://img.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1140.jpg?uuid=zLIZQs2KEeSip5UXo6cFBg"
                            data-low-res-src="https://img.washingtonpost.com/rf/image_400w/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1140.jpg?uuid=zLIZQs2KEeSip5UXo6cFBg"/>
                            <br/> <span class="pb-caption">Israeli Prime Minister Benjamin Netanyahu reacts as he visits the Western Wall in Jerusalem on March 18 following his party's victory in Israel's general election. (Thomas Coex/AFP/Getty Images)</span> 
                        </div>
                        <div class="pb-sig-line hasnt-headshot has-0-headshots hasnt-bio is-not-column"> <span class="pb-byline">By <a href="http://www.washingtonpost.com/people/steven-mufson">Steven Mufson</a></span> 
                            <span
                            class="pb-timestamp">March 18 at 12:22 PM</span> <span class="pb-tool email"><a href="mailto:[email protected]?subject=Reader feedback for 'Where do strained U.S.-Israeli relations go after Netanyahu’s victory?'"><span class="fa fa-envelope"></span>
                                </a>
                                </span> <span class="tweet-authors"><span class="pb-twitter-follow unprocessed"><a href="https://twitter.com/@StevenMufson" class="twitter-follow-button" data-show-count="false" data-lang="en">Follow @StevenMufson</a></span> </span>
                        </div>
                        <article>
                            <p>President Obama told the U.N. General Assembly 18 months ago that he would
                                seek “real breakthroughs on these two issues — Iran’s nuclear program and
                                ­Israeli-Palestinian peace.”</p>
                            <p>But <a href="http://www.washingtonpost.com/world/netanyahu-sweeps-to-victory-in-israeli-election/2015/03/18/af4e50ca-ccf2-11e4-8730-4f473416e759_story.html"
                                title="www.washingtonpost.com">Benjamin Netanyahu’s triumph</a> in Tuesday’s
                                parliamentary elections keeps in place an Israeli prime minister who has
                                declared his intention to resist Obama on both of these fronts, guaranteeing
                                two more years of difficult diplomacy between leaders who barely conceal
                                their personal distaste for each other.</p>
                            <p>The Israeli election results also suggest that most voters there support
                                Netanyahu’s tough stance on U.S.-led negotiations to limit Iran’s nuclear
                                program and his vow on Monday that there would be <a href="http://www.washingtonpost.com/world/middle_east/on-final-day-of-campaign-netanyahu-says-no-palestinian-state-if-he-wins/2015/03/16/4f4468e8-cbdc-11e4-8730-4f473416e759_story.html"
                                title="www.washingtonpost.com">no independent Palestinian state</a> as long
                                as he is prime minister.</p>
                            <p>“On the way to his election victory, Netanyahu broke a lot of crockery
                                in the relationship,” said Martin Indyk, executive vice president of the
                                Brookings Institution and a former U.S. ambassador to Israel. “It can’t
                                be repaired unless both sides have an interest and desire to do so.”</p>
                            <p>Aside from Russian President Vladi­mir Putin, few foreign leaders so brazenly
                                stand up to Obama and even fewer among longtime allies.</p>
                            <div class="inline-content inline-video">
                                <div class="posttv-video-embed" data-duration="76000" data-headline="Israel's Netanyahu works on forming coalition"
                                data-is-truth-teller="0" data-max-height="-1" data-max-width="-1" data-object-id="5509aa07e4b0210747c74e5c"
                                data-show-endscreen="1" data-show-promo="http://img.washingtonpost.com/rf/image_1024w/2010-2019/WashingtonPost/2015/03/18/Production/Daily/A-Section/Images/2015-03-18T140126Z_01_JER07_RTRIDSP_3_ISRAEL-ELECTION.jpg"
                                data-uuid="a41ef658-cd8a-11e4-8730-4f473416e759" data-youtube-id="">
                                    <script src="http://www.washingtonpost.com/posttv/static/js/posttv/posttv-video-embed.v3.js"
                                    type="text/javascript"></script>
                                </div>
                                <div class="inline-video-caption"> <span class="pb-caption">Israeli Prime Minister Benjamin Netanyahu pledged to form a new governing coalition quickly after an upset election victory that was built on a shift to the right. (Reuters)</span> 
                                </div>
                            </div>
                            <p>In the past, Israeli leaders who risked damaging the country’s most important
                                relationship, that with Washington, tended to pay a price. In 1991, when
                                Prime Minister Yitzhak Shamir opposed the Madrid peace talks, President
                                George H.W. Bush held back loan guarantees to help absorb immigrants from
                                the former Soviet Union. Shamir gave in, but his government soon collapsed.</p>
                            <p>But this time, Netanyahu was not hurt by his personal and substantive
                                conflicts with the U.S. president.</p>
                            <p>“While the United States is loved and beloved in Israel, President Obama
                                is not,” said Robert M. Danin, a senior fellow at the Council on Foreign
                                Relations. “So the perceived enmity didn’t hurt the way it did with Shamir
                                when he ran afoul of Bush in ’91.”</p>
                            <p>Where do U.S.-Israeli relations go from here?</p>
                            <p>In the immediate aftermath of Tuesday’s elections, tensions between the
                                two sides continued to run hot. The Obama administration’s first comments
                                on the Israeli election came with a tough warning about some of the pre-election
                                rhetoric from Netanyahu’s Likud party, which tried to rally right-wing
                                support by saying that Arab Israeli voters were “coming out in droves.”</p>
                            <p>“The United States and this administration is deeply concerned about rhetoric
                                that seeks to marginalize Arab Israeli citizens,” White House press secretary
                                Josh Earnest told reporters aboard Air Force One. “It undermines the values
                                and democratic ideals that have been important to our democracy and an
                                important part of what binds the United States and Israel together.”</p>
                            <p>Earnest added that Netan­yahu’s election-eve disavowal of a two-state
                                solution for Israelis and Palestinians would force the administration to
                                reconsider its approach to peace in the region.</p>
                            <div></div>
                            <p>Over the longer term, a number of analysts say that Obama and Netan­yahu
                                will seek to play down the friction between them and point to areas of
                                continuing cooperation on military and economic issues.</p>
                            <p>“Both sides are going to want to turn down the rhetoric,” Danin said.
                                “But it is also a structural problem. They have six years of accumulated
                                history. That’s going to put limits on how far they can go together.”</p>
                            <p>The first substantive test could come as early as this month, when the
                                United States hopes that it can finish hammering out the framework of an
                                agreement with Iran.</p>
                            <p>Netanyahu strongly warned against making a “bad deal” during his March
                                3 address to a joint meeting of Congress, an appearance arranged by Republican
                                congressional leaders and criticized by the Obama administration for making
                                U.S.-Israeli relations partisan on both sides so close to the Israeli election.</p>
                            <p>If a deal is reached and does not pass muster with Netanyahu, he is likely
                                to work with congressional Republicans to try to scuttle the accord.</p>
                            <p>“The Republicans have said they will do what they can to block a deal,
                                and the prime minister has already made clear that he will work with the
                                Republicans against the president,” Indyk said. “That’s where a clash could
                                come, and it’s coming very quickly.”</p>
                            <p>The second test — talks with Palestinians — could be even more difficult.
                                In his September 2013 address to the United Nations, Obama hailed signs
                                of hope.</p>
                            <p>“Already, Israeli and Palestinian leaders have demonstrated a willingness
                                to take significant political risks,” Obama said in his speech. Palestinian
                                Authority President Mahmoud Abbas “has put aside efforts to shortcut the
                                pursuit of peace and come to the negotiating table. Prime Minister Netanyahu
                                has released Palestinian prisoners and reaffirmed his commitment to a Palestinian
                                state.”</p>
                            <p>Today, <a href="http://www.washingtonpost.com/blogs/worldviews/wp/2015/03/18/what-netanyahus-election-victory-means-for-the-palestinians/"
                                title="www.washingtonpost.com">the signals could not differ more</a>. The
                                Palestinian Authority has said that after it joins the International Criminal
                                Court at The Hague on April 1, it will press war crimes charges against
                                Israel for the bloody Gaza conflict during the summer. Israel, which controls
                                tax receipts, has pledged to punish the Palestinian Authority by freezing
                                its tax revenue.</p>
                            <p>The United States, which gives hundreds of millions of dollars of economic
                                aid to the Palestinian Authority, would be caught in the middle. It has
                                been trying to persuade both sides to stand down, but Netanyahu’s declaration
                                that there would be no Palestinian state on his watch makes that more difficult.</p>
                            <p>“Now it’s hard to see what could persuade the Palestinians” to hold up
                                on their ICC plans, Indyk said. “That has nothing to do with negotiations,
                                but if both sides can’t be persuaded to back down, then they will be on
                                a trajectory that could lead to the collapse of the Palestinian Authority
                                because it can’t pay wages anymore.</p>
                            <p>“That could be an issue forced onto the agenda about the same time as
                                a potential nuclear deal.”</p>
                            <div class="extra">
                                <p></p>
                            </div>
                        </article>
                        <div class="clear"></div>
                        <div class="post-body-sig-line"><a href="http://www.washingtonpost.com/people/steven-mufson"><img class="post-body-headshot-left" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=http://www.washingtonpost.com/blogs/wonkblog/files/2014/07/mufson_steve.jpg&amp;h=180&amp;w=180"/></a>
                            <div
                            class="post-body-bio has-photo">Steven Mufson covers the White House. Since joining The Post, he has covered
                                economics, China, foreign policy and energy.</div>
                        <div class="clear"></div>
                    </div>
                </div>
            </div>
            <div id="article-business_1399492829376_241" class="moat-trackable pb-feature pb-chained pb-f-page-share-bar pb-f-theme-normal"
            data-pb-async="false" data-pb-columns="" data-pb-name="page-share-bar"
            data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
            data-pb-content-editable="" moat-id="page-share-bar|article-business">
                <div class="social-tools-wrapper-bottom ">
                    <ul class="social-tools-bottom inline">
                        <li data-sharetype="facebook" class="left facebook"> <a href="#" onclick="window.open('https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fwapo.st%2F1Era2Lw','share_facebook','width=658,height=354,scrollbars=no'); return false;"
                            tabindex="_tbidx_"> <span class="fa fa-facebook-square">&nbsp;</span><span class="longname">Share on Facebook</span><span class="shortname">Share</span> </a> 
                        </li>
                        <li data-sharetype="twitter" class="right twitter"> <a href="#" onclick="window.open('https://twitter.com/share?url=http%3A%2F%2Fwapo.st%2F1Era2Lw&amp;text=Where do strained U.S.-Israeli relations go after Netanyahu’s victory?','share_twitter','width=550, height=350, scrollbars=no'); return false;"
                            tabindex="_tbidx_"> <span class="fa fa-twitter">&nbsp;</span> <span class="longname">Share on Twitter</span><span class="shortname">Tweet</span> </a> 
                        </li>
                    </ul>
                    <div class="clear"></div>
                </div>
            </div>
            <div id="article-business_1402342504319_850" class="moat-trackable pb-feature pb-chained pb-f-page-comments pb-f-theme-normal"
            data-pb-async="false" data-pb-columns="" data-pb-name="page-comments" data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
            data-pb-content-editable="" moat-id="page-comments|article-business">
                <div data-allow-comments="true" class="pb-comment-wrapper ">
                    <div id="comment_summary_pb_comments" class="comment-summary jump ">
                        <div class="comment-summary-count"><span class="fa fa-comments"></span><span id="echo_container" class="echo_container comment-vars echo-counter"
                            guid="http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"></span>
                        </div>
                        <div class="comment-summary-display"><span class="comment-display"> Comments</span>
                        </div>
                    </div>
                </div>
                <style>
                    .pb-feature.pb-f-page-comments .pb-comment-wrapper{padding-right:0;border-bottom:0}.pb-feature.pb-f-page-comments{border-right:1px solid #d5d5d5;padding-right:50px}
                </style>
            </div>
            <div id="article-business_1402342509758_904" class="moat-trackable pb-feature pb-chained pb-f-page-recommended-strip pb-f-theme-normal"
            data-pb-async="false" data-pb-columns="" data-pb-name="page-recommended-strip"
            data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
            data-pb-content-editable="" moat-id="page-recommended-strip|article-business">
                <script type="text/javascript">
                    (function($){TWP=window.TWP||{};TWP.Features=TWP.Features||{};TWP.Features.Page=TWP.Features.Page||{};TWP.Features.Page.RecommendedStrip={};TWP.Features.Page.RecommendedStrip.endpointServer="//recommendation.wpdigital.net";TWP.Features.Page.RecommendedStrip.canonicalUrl="http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"})(jQuery);
                </script>
                <div class="content-strip-marker recommended rs-alt1-true"></div>
            </div>
            <div id="article-business_1402342510843_771" class="moat-trackable pb-feature pb-chained pb-f-page-trending-strip pb-f-theme-normal"
            data-pb-async="false" data-pb-columns="" data-pb-name="page-trending-strip"
            data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
            data-pb-content-editable="" moat-id="page-trending-strip|article-business">
                <script type="text/javascript">
                    (function($){TWP=window.TWP||{};TWP.Features=TWP.Features||{};TWP.Features.Page=TWP.Features.Page||{};TWP.Features.Page.TrendingStrip={}})(jQuery);
                </script>
                <div class="content-strip-marker trending"></div>
            </div>
            <div id="article-business_1399492834009_602" class="moat-trackable pb-feature pb-chained pb-f-page-comments pb-f-theme-normal"
            data-pb-async="false" data-pb-columns="" data-pb-name="page-comments" data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
            data-pb-content-editable="" moat-id="page-comments|article-business">
                <div data-allow-comments="true" class="pb-comment-wrapper lockfix ">
                    <div id="comment_summary_pb_comments" class="comment-summary summary-expanded-mobile">
                        <div class="comment-summary-count"><span class="fa fa-comments"></span><span id="echo_container" class="echo_container comment-vars echo-counter"
                            guid="http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"></span>
                        </div>
                        <div class="comment-summary-display"><span class="comment-display"> Show Comments</span>
                        </div>
                    </div>
                    <div id="echo_container_placeholder" class="echo_container_placeholder">
                        <div id="echo_container_pb_comments" class="echo_container canvas comment-vars comments unprocessed defer deferMobile count submitbox stream "
                        guid="http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
                        allow_comments="true" allow_photos="false" allow_videos="false" commentpermalinkurlfacet="http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
                        defaultsort="reverseChronological" defaulttab="all" isallcomments="true"
                        includepause="true" includepermalink="false" includerecommend="true" includereport="true"
                        includereply="true" includeshare="true" includesorts="true" includetabs=""
                        includeverifiedcommenters="true" includevoteofftopic="false" markerdisplay="'post_commenter':'Post Commenter','staff':'Post Writer','top_commenter':'Post Forum','top_local':'Washingtologist','top_sports':'SuperFan','fact_checker':'Fact Checker','post_recommended':'Post Recommended','world_watcher':'World Watcher','cultuer_connoisseur':'Culture Connoisseur','weather_watcher':'Capital Weather Watcher','post_contributor':'Post Contributor'"
                        markersall="" maxitems="5" maxitemstop="3" moderationrequired="" primarynode="world"
                        sectionid="middle_east" columnname="" source="washpost.com" streamid=""
                        tabs="{}" usermarkers="" usermarkersall="" webtype="article" data-canvas-id="washpost.com/km4ey0dajm"
                        data-app-instance="6634zxcgfd">
                            <div class="echo-header-container">
                                <div id="comment-info-links" class="right"> <span class="discussion-policy"><a href="http://www.washingtonpost.com/blogs/ask-the-post/discussion-and-submission-guidelines/" target="_policy">Discussion Policy</a> </span> 
                                </div>
                                <div class="comment-count-label"><span class="echo-counter"></span> Comments</div>
                            </div>
                            <div id="echo_stream_container" class="echo-stream-container echo-comment-container echo-canvas canvas canvas-methode-allcomments echo-stream"
                            data-canvas-id="washpost.com/km4ey0dajm" data-app-instance="6634zxcgfd"></div>
                        </div>
                        <div class="badgetext hide hidden">
                            <div id="echo-top_sports" class="echo-badge-info">
                                <div class="marker echo-item-user-top_sports"></div>
                                <p class="title">SuperFan Badge</p>
                                <p>SuperFan badge holders consistently post smart, timely comments about
                                    Washington area sports and teams.</p>
                                <p class="echo-badge-info-link"><a target="_badgeinfo" href="http://www.washingtonpost.com/wp-srv/interactivity/get-a-badge.html">More about badges</a> |
                                    <a
                                    target="_badgeinfo" href="http://www.washingtonpost.com/wp-srv/interactivity/get-a-badge.html">Request a badge</a>
                                </p>
                            </div>
                            <div id="echo-culture_connoisseur" class="echo-badge-info">
                                <div class="marker echo-item-user-culture_connoisseur"></div>
                                <p class="title">Culture Connoisseur Badge</p>
                                <p>Culture Connoisseurs consistently offer thought-provoking, timely comments
                                    on the arts, lifestyle and entertainment.</p>
                                <p class="echo-badge-info-link"><a target="_badgeinfo" href="http://www.washingtonpost.com/wp-srv/interactivity/get-a-badge.html">More about badges</a> |
                                    <a
                                    target="_badgeinfo" href="http://www.washingtonpost.com/wp-srv/interactivity/get-a-badge.html">Request a badge</a>
                                </p>
                            </div>
                            <div id="echo-fact_checker" class="echo-badge-info">
                                <div class="marker echo-item-user-fact_checker"></div>
                                <p class="title">Fact Checker Badge</p>
                                <p>Fact Checkers contribute questions, information and facts to <a target="_badgeinfo"
                                    href="http://www.washingtonpost.com/blogs/fact-checker">The Fact Checker</a>.</p>
                                <p
                                class="echo-badge-info-link"><a target="_badgeinfo" href="http://www.washingtonpost.com/wp-srv/interactivity/get-a-badge.html">More about badges</a> |
                                    <a
                                    target="_badgeinfo" href="http://www.washingtonpost.com/wp-srv/interactivity/get-a-badge.html">Request a badge</a>
                                        </p>
                            </div>
                            <div id="echo-top_local" class="echo-badge-info">
                                <div class="marker echo-item-user-top_local"></div>
                                <p class="title">Washingtologist Badge</p>
                                <p>Washingtologists consistently post thought-provoking, timely comments
                                    on events, communities, and trends in the Washington area.</p>
                                <p class="echo-badge-info-link"><a target="_badgeinfo" href="http://www.washingtonpost.com/wp-srv/interactivity/get-a-badge.html">More about badges</a> |
                                    <a
                                    target="_badgeinfo" href="http://www.washingtonpost.com/wp-srv/interactivity/get-a-badge.html">Request a badge</a>
                                </p>
                            </div>
                            <div id="echo-staff" class="echo-badge-info">
                                <div class="marker echo-item-user-staff" style="float:left;"></div>
                                <p class="title">Post Writer Badge</p>
                                <p>This commenter is a Washington Post editor, reporter or producer.</p>
                            </div>
                            <div id="echo-top_commenter" class="echo-badge-info">
                                <div class="marker echo-item-user-top_commenter"></div>
                                <p class="title">Post Forum Badge</p>
                                <p>Post Forum members consistently offer thought-provoking, timely comments
                                    on politics, national and international affairs.</p>
                                <p class="echo-badge-info-link"><a target="_badgeinfo" href="http://www.washingtonpost.com/wp-srv/interactivity/get-a-badge.html">More about badges</a> |
                                    <a
                                    target="_badgeinfo" href="http://www.washingtonpost.com/wp-srv/interactivity/get-a-badge.html">Request a badge</a>
                                </p>
                            </div>
                            <div id="echo-weather_watcher" class="echo-badge-info">
                                <div class="marker echo-item-user-weather_watcher"></div>
                                <p class="title">Weather Watcher Badge</p>
                                <p>Weather Watchers consistently offer thought-provoking, timely comments
                                    on climates and forecasts.</p>
                                <p class="echo-badge-info-link"><a target="_badgeinfo" href="http://www.washingtonpost.com/wp-srv/interactivity/get-a-badge.html">More about badges</a> |
                                    <a
                                    target="_badgeinfo" href="http://www.washingtonpost.com/wp-srv/interactivity/get-a-badge.html">Request a badge</a>
                                </p>
                            </div>
                            <div id="echo-world_watcher" class="echo-badge-info">
                                <div class="marker echo-item-user-world_watcher"></div>
                                <p class="title">World Watcher Badge</p>
                                <p>World Watchers consistently offer thought-provoking, timely comments on
                                    international affairs.</p>
                                <p class="echo-badge-info-link"><a target="_badgeinfo" href="http://www.washingtonpost.com/wp-srv/interactivity/get-a-badge.html">More about badges</a> |
                                    <a
                                    target="_badgeinfo" href="http://www.washingtonpost.com/wp-srv/interactivity/get-a-badge.html">Request a badge</a>
                                </p>
                            </div>
                            <div id="echo-post_contributor" class="echo-badge-info">
                                <div class="marker echo-item-user-post_contributor"></div>
                                <p class="title">Post Contributor Badge</p>
                                <p>This commenter is a Washington Post contributor. Post contributors aren’t
                                    staff, but may write articles or columns. In some cases, contributors are
                                    sources or experts quoted in a story.</p>
                                <p class="echo-badge-info-link"><a target="_badgeinfo" href="http://www.washingtonpost.com/wp-srv/interactivity/get-a-badge.html">More about badges</a> |
                                    <a
                                    target="_badgeinfo" href="http://www.washingtonpost.com/wp-srv/interactivity/get-a-badge.html">Request a badge</a>
                                </p>
                            </div>
                            <div id="echo-post_recommended" class="echo-badge-info">
                                <div class="marker echo-item-marker-post_recommended"></div>
                                <p class="title">Post Recommended</p>
                                <p>Washington Post reporters or editors recommend this comment or reader
                                    post.</p>
                            </div>
                            <div id="echo-anon-report">
                                <p>You must be logged in to report a comment.</p>
                                <div class="inline padding-right-9"><a class="echo-sign-in icon right-arrow" href=""><strong>Sign in here</strong></a>
                                </div>
                            </div>
                            <div id="echo-anon-recommend">
                                <p>You must be logged in to recommend a comment.</p>
                                <div class="inline padding-right-9"><a class="echo-sign-in icon right-arrow" href=""><strong>Sign in here</strong></a>
                                </div>
                            </div>
                            <div id="echo-comments-overview">
                                <p>Comments our editors find particularly useful or relevant are displayed
                                    in <strong>Top Comments</strong>, as are comments by users with these badges: <strong><span class="badge-list"></span></strong>.
                                    Replies to those posts appear here, as well as posts by staff writers.</p>
                                <p>All comments are posted in the <strong>All Comments</strong> tab.</p>
                                <div
                                class="inline padding-right-9 left"><a class="icon right-arrow" href="http://www.washingtonpost.com/wp-srv/interactivity/get-a-badge.html"><strong>More about badges</strong></a>
                            </div>
                            <div class="inline padding-right-9 right"><a class="icon right-arrow" href="http://www.washingtonpost.com/wp-srv/interactivity/get-a-badge.html"><strong>Get a badge</strong></a>
                            </div>
                            <div class="clear padding-top-10">
                                <p>To pause and restart automatic updates, click "Live" or "Paused". If paused,
                                    you'll be notified of the number of additional comments that have come
                                    in.</p>
                            </div>
                        </div>
                        <div id="echo-more-comments-top">
                            <div style="font-size: 11px;">
                                <br/>Comments our editors find particularly useful or relevant are displayed
                                in <strong>Top Comments</strong>, as are comments by users with these badges: <strong><span class="badge-list"></span></strong>.
                                Replies to those posts appear here, as well as posts by staff writers.</div>
                        </div>
                    </div>
                    <div class="hide hidden utils">
                        <div id="comment-flag-container">
                            <div id="comment-flag-list">
                                <div class="arrow-one"></div>
                                <div class="arrow-two"></div>
                                <div class="flag-list">
                                    <ul>
                                        <li id="flag-spam" class="report-button">Spam</li>
                                        <li id="flag-offensive" class="report-button">Offensive</li>
                                        <li id="flag-disagree" class="report-button">Disagree</li>
                                        <li id="flag-offtopic" class="report-button">Off-Topic</li>
                                    </ul>
                                </div>
                            </div>
                        </div>
                    </div>
                    <!--[if IE 7]>
                        <style type="text/css">
                            .comment-share-info #newsharebar li .more{position:relative;margin-left:-220px}.comment-share-info #newsharebar li .morebottom{height:110px;position:relative;top:10px;z-index:998}.comment-share-info #newsharebar li .morebottom .left,.comment-share-info #newsharebar li .morebottom .right{z-index:1000;height:110px}.comment-share-info #newsharebar li .morebottom ul li{width:100px}.comment-share-info #newsharebar li .arrow-one,.comment-share-info #newsharebar li .arrow-two{position:absolute;z-index:999;left:229px}.comment-share-info #newsharebar li .arrow-one{top:9px}.comment-share-info #newsharebar li .arrow-two{top:11px}
                        </style>
                    <![endif]-->
                    <div class="comment-share-info hide hidden">
                        <div id="newsharebar">
                            <div class="newshare">
                                <ul class="share mega-menu inline-list">
                                    <li class="sharetop">
                                        <div class="more" style="display: none;">
                                            <div class="arrow-one"></div>
                                            <div class="arrow-two"></div>
                                            <div class="morebottom">
                                                <div class="left">
                                                    <ul>
                                                        <li>
                                                            <div class="shareitems facebook"></div> <a href="javascript:void(0)" class="facebook-link" onclick="window.open('http://www.facebook.com/share.php?u={shareURL}','','width=658,height=354,scrollbars=no');return false;">Facebook</a>
                                                        </li>
                                                        <li>
                                                            <div class="shareitems twitter"></div> <a href="javascript:void(0)" onclick="window.open('http://www.twitter.com/intent/tweet?text={headline}&amp;url={shareURL}','','width=550, height=350, scrollbars=no')">Twitter</a>
                                                        </li>
                                                        <li>
                                                            <div class="shareitems reddit"></div> <a href="javascript:void(0)" onclick="window.open('http://reddit.com/submit?url={shareURL}%3Ftid%3Dsm_btn_reddit&amp;title={headline}','','width=550, height=350, scrollbars=no')">Reddit</a>
                                                        </li>
                                                    </ul>
                                                </div>
                                                <div class="right">
                                                    <ul>
                                                        <li>
                                                            <div class="shareitems stumbleupon"></div><a href="http://www.stumbleupon.com/submit?url={shareURL}%3Ftid%3Dsm_btn_su&amp;title={headline}">StumbleUpon</a>
                                                        </li>
                                                        <li>
                                                            <div class="shareitems digg"></div> <a href="http://digg.com/submit?phase=2&amp;url={shareURL}%3Ftid%3Dsm_btn_digg&amp;title={headline}">Digg</a>
                                                        </li>
                                                        <li>
                                                            <div class="shareitems delicious"></div> <a href="http://www.delicious.com/save?v=5&amp;noui&amp;jump=close&amp;url={shareURL}%3Ftid%3Dsm_btn_delicious&amp;title={headline}">Delicious</a>
                                                        </li>
                                                    </ul>
                                                </div>
                                                <div style="clear:both;"></div>
                                            </div>
                                        </div>
                                    </li>
                                </ul>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        </div>
        <div id="right-rail" class="pb-layout-item pb-chain pb-one right-rail"
        data-pb-columns="1">
            <div id="rzchwozzutoatieqlcqmuow_1421785167982_543" class="moat-trackable pb-feature pb-chained pb-f-page-newsletter pb-f-theme-normal"
            data-pb-async="false" data-pb-columns="" data-pb-name="page-newsletter"
            data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
            data-pb-content-editable="" moat-id="page-newsletter|article-business">
                <div id="newsLetter-signup-box" class="pb-feature-inside-wrapper ">
                    <p id="newsletter-section">world</p>
                    <p id="newsletter-subsection">middle_east</p>
                    <p id="newsletter-blogname"></p>
                    <p class="headline" id="newsletter-headline"></p>
                    <p class="title" id="newsletter-tagline"></p>
                    <form method="post" action="http://link.washingtonpost.com/s">
                        <input type="text" name="email" id="newsLetter-input" class="newsLetter-field"
                        placeholder="E-mail address"/>
                        <input type="submit" value="Add" class="newsLetter-btn" id="subscribe-newsLetter"/>
                        <input type="hidden" name="template" value="" id="template-var"/>
                        <input type="hidden" name="vars[simple_signup]" value="1"/>
                        <input type="hidden" name="vars[simple]" value="1"/>
                        <input type="hidden" name="" value="1" id="variable-var"/>
                        <input type="hidden" name="redirect" value="" id="redirect-url"/>
                    </form>
                    <p class="newsLetter-error-msg">Please enter a valid email address</p>
                </div>
            </div>
            <div id="article-business_1409240003194_922" class="moat-trackable pb-feature pb-chained pb-f-ad-flex pb-f-theme-normal"
            data-pb-async="false" data-pb-columns="" data-pb-name="ad-flex" data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
            data-pb-content-editable="" moat-id="ad-flex|article-business">
                <div id="slug_flex_ss_bb_hp" class="pb-ad-container" style="display:none;"
                data-ad-type="flex_ss_bb_hp"></div>
            </div>
            <div id="article-business_1409240010906_564" class="moat-trackable pb-feature pb-chained pb-f-page-post-most pb-f-theme-normal"
            data-pb-async="false" data-pb-columns="" data-pb-name="page-post-most"
            data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
            data-pb-content-editable="" moat-id="page-post-most|article-business">
                <div id="post-most-rr" class="post-most">
                    <div class="header-mobile-border"></div>
                    <div class="pb-module-header">Most Read <span class="section">Business</span>
                    </div>
                    <ul class="large def-feed">
                        <li> <a href="http://www.washingtonpost.com/news/energy-environment/wp/2015/03/16/the-melting-of-antarctica-was-already-really-bad-it-just-got-worse/?tid=pm_business_pop"> <div class="number left">1</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/energy-environment/201503/Images/2012-02-07T003457Z_01_TOR105_RTRIDSP_3_USA.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/energy-environment/201503/Images/2012-02-07T003457Z_01_TOR105_RTRIDSP_3_USA.jpg" width="138" height="92"/> <div class="headline ">The melting of Antarctica was already really bad. It just got worse.</div> <div class="clear"></div> </a> 
                        </li>
                        <li> <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2015/03/18/the-worlds-longest-non-stop-flights-mapped/?tid=pm_business_pop"> <div class="number left">2</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/wonkblog/201503/Images/tumblr_n1zot9AsFt1s3dn7vo1_1280.png" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/wonkblog/201503/Images/tumblr_n1zot9AsFt1s3dn7vo1_1280.png" width="138" height="92"/> <div class="headline ">The world's longest non-stop flights, mapped</div> <div class="clear"></div> </a> 
                        </li>
                        <li> <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2015/03/18/fed-signals-that-higher-interest-rates-are-coming/?tid=pm_business_pop"> <div class="number left">3</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/wonkblog/201503/Images/Was8907355.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/wonkblog/201503/Images/Was8907355.jpg" width="138" height="92"/> <div class="headline ">Federal Reserve decision: Fed signals that higher interest rates are coming</div> <div class="clear"></div> </a> 
                        </li>
                        <li> <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2015/03/18/the-most-popular-breakfast-cereals-in-america-today/?tid=pm_business_pop"> <div class="number left">4</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/wonkblog/201503/Images/2015-03-05T143249Z_01_TOR117_RTRIDSP_3_KROGER-RESULTS.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/wonkblog/201503/Images/2015-03-05T143249Z_01_TOR117_RTRIDSP_3_KROGER-RESULTS.jpg" width="138" height="92"/> <div class="headline ">The most popular breakfast cereals in America today</div> <div class="clear"></div> </a> 
                        </li>
                        <li class="last"> <a href="http://www.washingtonpost.com/blogs/the-switch/wp/2015/03/18/tesla-just-won-a-huge-victory-in-new-jersey/?tid=pm_business_pop"> <div class="number left">5</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/the-switch/201503/Images/Screen-Shot-2014-10-22-at-11.32.40.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/the-switch/201503/Images/Screen-Shot-2014-10-22-at-11.32.40.jpg" width="138" height="92"/> <div class="headline ">Tesla just won a huge victory in New Jersey</div> <div class="clear"></div> </a> 
                        </li>
                    </ul>
                    <ul class="large alt-feed">
                        <li> <a href="http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html?tid=pm_business_pop_b"> <div class="number left">1</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1138.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1138.jpg" width="138" height="92"/> <div class="headline ">Where do strained U.S.-Israeli relations go after Netanyahu’s victory?</div> <div class="clear"></div> </a> 
                        </li>
                        <li> <a href="http://www.washingtonpost.com/news/energy-environment/wp/2015/03/16/the-melting-of-antarctica-was-already-really-bad-it-just-got-worse/?tid=pm_business_pop_b"> <div class="number left">2</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/energy-environment/201503/Images/2012-02-07T003457Z_01_TOR105_RTRIDSP_3_USA.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/energy-environment/201503/Images/2012-02-07T003457Z_01_TOR105_RTRIDSP_3_USA.jpg" width="138" height="92"/> <div class="headline ">The melting of Antarctica was already really bad. It just got worse.</div> <div class="clear"></div> </a> 
                        </li>
                        <li> <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2015/03/18/the-worlds-longest-non-stop-flights-mapped/?tid=pm_business_pop_b"> <div class="number left">3</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/wonkblog/201503/Images/tumblr_n1zot9AsFt1s3dn7vo1_1280.png" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/wonkblog/201503/Images/tumblr_n1zot9AsFt1s3dn7vo1_1280.png" width="138" height="92"/> <div class="headline ">The world’s longest non-stop flights, mapped</div> <div class="clear"></div> </a> 
                        </li>
                        <li> <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2015/03/18/fed-signals-that-higher-interest-rates-are-coming/?tid=pm_business_pop_b"> <div class="number left">4</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/wonkblog/201503/Images/Was8907355.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/wonkblog/201503/Images/Was8907355.jpg" width="138" height="92"/> <div class="headline ">Federal Reserve decision: Fed signals that higher interest rates are coming</div> <div class="clear"></div> </a> 
                        </li>
                        <li class="last"> <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2015/03/18/2015-ncaa-tournament-your-guide-to-picking-all-the-upsets-in-this-years-ncaa-tournament/?tid=pm_business_pop_b"> <div class="number left">5</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/wonkblog/201503/Images/NCAA_South_Georgetowns_Past-0e6bf.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/wonkblog/201503/Images/NCAA_South_Georgetowns_Past-0e6bf.jpg" width="138" height="92"/> <div class="headline ">2015 NCAA tournament: Your guide to picking all the upsets in this year’s NCAA tournament</div> <div class="clear"></div> </a> 
                        </li>
                    </ul>
                    <div id="slug_postmost" data-ad-type="postmost" style="display:none;width:100%;"></div>
                </div>
            </div>
            <div id="article-business_1410205915966_362" class="moat-trackable pb-feature pb-chained pb-f-most-sidebar pb-f-theme-normal"
            data-pb-async="false" data-pb-columns="" data-pb-name="most-sidebar" data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
            data-pb-content-editable="" moat-id="most-sidebar|article-business">
                <style>
                    .the-most ul.large li{display:none}
                </style>
                <div id="the-most-rr" class="the-most">
                    <div class="header-mobile-border"></div>
                    <div class="pb-module-header"> <a class="the-most-sb-header" href="https://www.washingtonpost.com/themost?tid=themost_sb_header">The Most <span class="section">Popular All Over</span></a> 
                        <div
                        id="slug_most_tile" style="float:right; position: relative; bottom: 15px;"
                        data-ad-type="most_tile"></div>
                </div>
                <ul class="large">
                    <li>
                        <div class="outer-div"> <a target="_blank" href="https://www.thedodo.com/dogs-who-are-smothering-the-cat-with-their-love-1047641763.html"> <img height="60" width="60" class="photo right small-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://assets.rbl.ms/605929/300x.jpg&amp;h=60&amp;w=60"/> <img height="92" width="138" class="photo right big-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://assets.rbl.ms/605929/300x.jpg&amp;h=92&amp;w=138"/> </a> 
                            <a
                            target="_blank" href="http://www.thedodo.com">
                                <div class="feedname">The Dodo</div>
                                </a> <a target="_blank" href="https://www.thedodo.com/dogs-who-are-smothering-the-cat-with-their-love-1047641763.html"> <div class="line-outer"> <div class="line headline">12 Dogs Who Are Smothering The Cat With Their Love</div> </div> </a> 
                        </div>
                        <div class="clear"></div>
                    </li>
                    <li>
                        <div class="outer-div"> <a target="_blank" href="http://www.wnyc.org/story/race-and-latino-americans/"> <img height="60" width="60" class="photo right small-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://media2.wnyc.org/i/1500/1053/c/80/1/Rodner_Figueroa_getty.jpg&amp;h=60&amp;w=60"/> <img height="92" width="138" class="photo right big-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://media2.wnyc.org/i/1500/1053/c/80/1/Rodner_Figueroa_getty.jpg&amp;h=92&amp;w=138"/> </a> 
                            <a
                            target="_blank" href="http://www.wnyc.org">
                                <div class="feedname">WNYC - New York Public Radio</div>
                                </a> <a target="_blank" href="http://www.wnyc.org/story/race-and-latino-americans/"> <div class="line-outer"> <div class="line headline">'The Deepest, Darkest Secret in the Latino Community'</div> </div> </a> 
                        </div>
                        <div class="clear"></div>
                    </li>
                    <li class="last">
                        <div class="outer-div"> <a target="_blank" href="http://feedproxy.google.com/~r/time/topstories/~3/nUTIa4bLKY8/"> <img height="60" width="60" class="photo right small-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://timedotcom.files.wordpress.com/2015/03/terry-mcauliffe.jpg?quality=65&amp;strip=color&amp;w=150&amp;h=60&amp;w=60"/> <img height="92" width="138" class="photo right big-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://timedotcom.files.wordpress.com/2015/03/terry-mcauliffe.jpg?quality=65&amp;strip=color&amp;w=150&amp;h=92&amp;w=138"/> </a> 
                            <a
                            target="_blank" href="http://www.time.com">
                                <div class="feedname">TIME</div>
                                </a> <a target="_blank" href="http://feedproxy.google.com/~r/time/topstories/~3/nUTIa4bLKY8/"> <div class="line-outer"> <div class="line headline">Virginia Governor Calls for Probe Into Student’s Arrest</div> </div> </a> 
                        </div>
                        <div class="clear"></div>
                    </li>
                </ul>
                <div id="slug_the_most"> <a id="the_most_sub_button" href="https://www.washingtonpost.com/themost?tid=themost_sb_img"
                    target="_blank"> <span>The Most</span> Popular stories around the web </a> 
                </div>
                <div id="slug_most_logo" data-ad-type="most_logo" style="display:none;"></div>
            </div>
        </div>
        <div id="article-business_1409240017498_319" class="moat-trackable pb-feature pb-chained pb-f-ad-flex-2 pb-f-theme-normal"
        data-pb-async="false" data-pb-columns="" data-pb-name="ad-flex-2" data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
        data-pb-content-editable="" moat-id="ad-flex-2|article-business">
            <div id="slug_flex_ss_bb_hp_2" class="pb-ad-container" style="display:none;"
            data-ad-type-placeholder="flex_ss_bb_hp|2" data-ad-delivery="vi"></div>
        </div>
        <div id="article-business_1414477165152_294" class="moat-trackable pb-feature pb-chained pb-f-games-gamesWidget pb-f-theme-normal"
        data-pb-async="false" data-pb-columns="" data-pb-name="games-gamesWidget"
        data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
        data-pb-content-editable="" moat-id="games-gamesWidget|article-business">
            <div class="right-rail game-module position-rel html5">
                <div class="games-intro">
                     <h4>Our Online Games</h4> 
                    <p>Play right from this page</p>
                </div>
                <div class="position-abs on-right game-player-container ghide">
                    <div class="position-rel full-width full-height game-player-container-inner overflow-hidden">
                        <iframe frameborder="0"></iframe>
                        <img class="screenshot position-abs on-left"/>
                    </div>
                    <div class="close-button position-abs"><i class="fa fa-2x fa-times-circle"></i>
                    </div>
                </div>
                <div class="full-width module component">
                    <div class="game-widgets-container position-rel">
                        <div id="online-game-carousel-right-rail">
                            <ul class="games">
                                <li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block flash"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/sudoku/flash?type=gamesembed" onlinegamecodelanguage="flash" iframewidth="650px" iframeheight="470"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/sudoku/img/148x148.png" alt="sudoku"/> <div> <h4>Sudoku</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Strategy</span> <p> Put on your Sudoku hat and get ready for a challenging Sudoku puzzle! </p> </div> </div> </a> 
                                </li>
                                <li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block flash"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/daily-crossword/flash?type=gamesembed" onlinegamecodelanguage="flash" iframewidth="650px" iframeheight="450"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/daily-crossword/img/148x148.png" alt="daily-crossword"/> <div> <h4>Daily Crossword</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Word</span> <p> Same fun of crosswords but online! </p> </div> </div> </a> 
                                </li>
                                <li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block flash"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/just-words/flash?type=gamesembed" onlinegamecodelanguage="flash" iframewidth="650px" iframeheight="455"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/masque-just-words/img/148x148.png" alt="masque-just-words"/> <div> <h4>Just Words</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Word</span> <p> Get ready to be wowed with wonderful word fun! </p> </div> </div> </a> 
                                </li>
                                <li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block html5"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/trizzle/html5?type=gamesembed" onlinegamecodelanguage="html5" iframewidth="650px" iframeheight="0"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/html5-trizzle/img/292x194.png" alt="html5-trizzle"/> <div> <h4>Trizzle</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Strategy</span> <p> Experience the joy of Trizzle! </p> </div> </div> </a> 
                                </li>
                            </ul>
                        </div> <a href="#" id="ui-carousel-prev" class="up-arrow position-abs on-top on-right"><i class="icon-chevron-up icon-2x"></i></a> 
                        <a
                        href="#" id="ui-carousel-next" class="down-arrow position-abs on-bottom on-right"><i class="icon-chevron-down icon-2x"></i>
                            </a>
                    </div>
                </div>
                <div class="clear"></div>
            </div>
        </div>
        <div id="article-business_1409240029666_516" class="moat-trackable pb-feature pb-chained pb-f-page-editors-picks pb-f-theme-normal"
        data-pb-async="false" data-pb-columns="" data-pb-name="page-editors-picks"
        data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
        data-pb-content-editable="" moat-id="page-editors-picks|article-business"></div>
        <div id="article-business_1409240036732_683" class="moat-trackable pb-feature pb-chained pb-f-page-footer-v2 pb-f-theme-normal"
        data-pb-async="false" data-pb-columns="" data-pb-name="page-footer-v2"
        data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
        data-pb-content-editable="" moat-id="page-footer-v2|article-business">
            <ul class="footer-v2 plain">
                <li><a href="http://www.washingtonpost.com"><b>washingtonpost.com</b></a>
                </li>
                <li>© 1996-2015 The Washington Post</li>
                <li>&nbsp;</li>
                <li><a href="http://www.washingtonpost.com/actmgmt/help/">Help and Contact Us</a>
                </li>
                <li><a href="http://www.washingtonpost.com/terms-of-service/2011/11/18/gIQAldiYiN_story.html">Terms of Service</a>
                </li>
                <li><a href="http://www.washingtonpost.com/privacy-policy/2011/11/18/gIQASIiaiN_story.html">Privacy Policy</a>
                </li>
                <li><a href="http://www.washingtonpost.com/discussion-and-submission-guidelines/2011/11/21/gIQAuvIbiN_story.html">Submissions and Discussion Policy</a>
                </li>
                <li><a href="http://www.washingtonpost.com/rss-terms-of-service/2012/01/16/gIQAadFYAQ_story.html">RSS Terms of Service</a>
                </li>
                <li><a href="http://www.washingtonpost.com/how-can-i-opt-out-of-online-advertising-cookies/2011/11/18/gIQABECbiN_story.html">Ad Choices</a>
                </li>
            </ul>
        </div>
        <div id="article-business_1409240042494_825" class="moat-trackable pb-feature pb-chained pb-f-ad-flex-3 pb-f-theme-normal"
        data-pb-async="false" data-pb-columns="" data-pb-name="ad-flex-3" data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
        data-pb-content-editable="" moat-id="ad-flex-3|article-business">
            <div id="slug_flex_ss_bb_hp_3" class="pb-ad-container" style="display:none;"
            data-ad-type-placeholder="flex_ss_bb_hp|3" data-ad-delivery="vi"></div>
        </div>
        </div>
        </div>
        <div id="article-business_1401912648216_112" class="moat-trackable pb-layout-item pb-feature pb-three pb-f-article-next-story pb-f-theme-normal"
        data-pb-async="false" data-pb-columns="3" data-pb-name="article-next-story"
        data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
        data-pb-content-editable="" moat-id="article-next-story|article-business">
            <style type="text/css">
                .pb-f-article-next-story{display:none}
            </style>
        </div>
        <div id="article-business_1401913151279_677" class="moat-trackable pb-layout-item pb-feature pb-three pb-f-ad-leaderboard-2 pb-f-theme-normal"
        data-pb-async="false" data-pb-columns="3" data-pb-name="ad-leaderboard-2"
        data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
        data-pb-content-editable="" moat-id="ad-leaderboard-2|article-business">
            <div id="slug_leaderboard_bottom" data-ad-type="leaderboard_bottom" class="pb-ad-container leaderboard-2"
            style="display:none;"></div>
        </div>
        <div class="pb-scatter">
            <div id="rzchwozzutoatieqlcqmuow_1423588473636_766" class="moat-trackable pb-layout-item pb-feature pb-one pb-f-page-clavis pb-f-theme-normal"
            data-pb-async="false" data-pb-columns="1" data-pb-name="page-clavis" data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
            data-pb-content-editable="" moat-id="page-clavis|article-business">
                <script>
                    try{if(wp_meta_data){if(!wp_meta_data.clavis){wp_meta_data.clavis={}}(function(){var clavisArray=[];var clavisNames=[];clavisArray.push("RW0");clavisNames.push("Child 2");clavisArray.push("KTT");clavisNames.push("New Auxiliary 30");clavisArray.push("sa6");clavisNames.push("New Auxiliary 37");clavisArray.push("4hr");clavisNames.push("New Auxiliary 38");clavisArray.push("g5c");clavisNames.push("New Auxiliary 39");clavisArray.push("3fv");clavisNames.push("New Auxiliary 40");clavisArray.push("8z8");clavisNames.push("Aux 100714");clavisArray.push("z0s");clavisNames.push("Copy of New Auxiliary 20");clavisArray.push("n8g");clavisNames.push("Copy of New Auxiliary 20");clavisArray.push("5k4");clavisNames.push("China_HongKong%20Exclusion%2012-12-14");clavisArray.push("7f3");clavisNames.push("Copy of New Auxiliary 26");clavisArray.push("o1b");clavisNames.push("Defense%20and%20National%20Security%202.12.15");clavisArray.push("m1d");clavisNames.push("Copy%20of%20Defense%20and%20National%20Security%202.12.15");clavisArray.push("pvj");clavisNames.push("New Auxiliary 46");wp_meta_data.clavis.auxiliaries=clavisArray;wp_meta_data.clavis.auxiliary_names=clavisNames})()}}catch(e){};
                </script>
            </div>
            <div id="rzchwozzutoatieqlcqmuow_1424205096940_6" class="moat-trackable pb-layout-item pb-feature pb-one pb-f-page-targeting pb-f-theme-normal"
            data-pb-async="false" data-pb-columns="1" data-pb-name="page-targeting"
            data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
            data-pb-content-editable="" moat-id="page-targeting|article-business">
                <script type="text/javascript">
                    (function($){TWP=window.TWP||{};TWP.Features=TWP.Features||{};TWP.Features.Page=TWP.Features.Page||{};TWP.Features.Page.Targeting={};TWP.Features.Page.Targeting.endpointServer="https://targeting.wpdigital.net/TargetingWebAPP/targeting"})(jQuery);
                </script>
            </div>
        </div>
        <div id="rzchwozzutoatieqlcqmuow_1425455292781_802" class="moat-trackable pb-layout-item pb-feature pb-three pb-f-page-subscription pb-f-theme-normal"
        data-pb-async="false" data-pb-columns="3" data-pb-name="page-subscription"
        data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
        data-pb-content-editable="" moat-id="page-subscription|article-business">
            <div id="subscription-banner" class="ab-test-subscription-banner banner"
            style="display: none;">
                <div class="wp-logo"> <a href="http://www.washingtonpost.com?nid=top_pb_wplogo">The Washington Post</a> 
                </div>
                <div class="banner-content">
                    <p class="subscribe-headline">Every story. Every feature. Every insight.</p>
                    <p class="subscribe-tagline">Yours for as low as JUST 99¢!</p> <a href="https://subscribe.washingtonpost.com/acquisition/?promo=dgdefault_bannertest1&amp;view=1&amp;wpsrc=CM0000262&amp;ttexclude=1&amp;hl=hl2N99"
                    id="subscribe-btn" class="submit-btn subscribe"> Subscribe </a>  <span class="not-now-btn subscribe"> <p class="label">Not Now</p> <a class="link"><i class="fa fa-times"></i></a> </span> 
                </div>
            </div>
            <div id="signup-banner" class="ab-test-signup-banner banner" style="display: none;">
                <p id="newsletter-banner-section">world</p>
                <p id="newsletter-banner-subsection">middle_east</p>
                <p id="newsletter-banner-blogname"></p>
                <div class="wp-logo"> <a href="http://www.washingtonpost.com?nid=top_pb_wplogo">The Washington Post</a> 
                </div>
                <div class="banner-content">
                    <div class="signup-title">
                        <p class="signup-headline" id="newsletter-headline-banner"></p>
                        <p class="signup-tagline" id="newsletter-tagline-banner"></p>
                    </div>
                    <form method="post" action="http://link.washingtonpost.com/s" id="signup-form">
                        <input type="text" name="email" class="signup-field" placeholder="E-mail address"
                        id="newsLetter-input-banner"/>
                        <input type="submit" value="Add" class="submit-btn signup" id="signup-newsLetter"/>
                        <input type="hidden" name="template" value="" id="template-var-banner"/>
                        <input type="hidden" name="vars[simple_signup]" value="1"/>
                        <input type="hidden" name="vars[simple]" value="2" id="banner-simple-var"/>
                        <input type="hidden" name="" value="1" id="variable-var-banner"/>
                        <input type="hidden" name="redirect" value="" id="redirect-url-banner"/>
                    </form>
                    <div class="clear"></div>
                    <div class="newsletter-suggestions">
                        <p class="title">You might also like:</p>
                        <div class="suggestion-list">
                            <div class="suggestion">
                                <input type="checkbox" class="checkbox"/>
                                <p class="title">Name of Related Newsletter (daily)</p>
                            </div>
                            <div class="suggestion">
                                <input type="checkbox" class="checkbox"/>
                                <p class="title">Another Related Newsletter (M-W-F)</p>
                            </div>
                            <div class="suggestion">
                                <input type="checkbox" class="checkbox"/>
                                <p class="title">This Newsletter is Good (weekly)</p>
                            </div>
                        </div>
                        <div class="suggestion-buttons">
                            <input type="submit" value="No, thanks" class="submit-btn signup" id="signup-cancel"/>
                            <input type="submit" value="Sign Up" class="submit-btn signup" id="signup-more"/>
                        </div>
                    </div> <span class="not-now-btn subscribe"> <p class="label">Not Now</p> <a class="link"><i class="fa fa-times"></i></a> </span> 
                </div>
                <p class="newsLetter-error-msg-banner">Incorrect email</p>
            </div>
        </div>
        <div id="article-business_1415646289433_293" class="moat-trackable pb-layout-item pb-feature pb-three pb-f-bi-abtest pb-f-theme-normal"
        data-pb-async="false" data-pb-columns="3" data-pb-name="bi-abtest" data-pb-content-uri="/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"
        data-pb-content-editable="" moat-id="bi-abtest|article-business">
            <script>
                var TWP=window.TWP||{};(function(w,usrValue,undefined){var usr=w.TWP.ABTestUser=usrValue;w._abtemptyfn=function(){return undefined}})(window,{trackPageviewEventBefore:"onTwpMeterComplete.omniture"||"abtest-noevent",trackPageviewEventAfter:"afterTwpPageTrack.omniture"||"abtest-noevent",trackSetHandler:"TWP.ABTestMfr.track.omniture.trackSetHandler"||"_abtemptyfn",trackUnsetHandler:"TWP.ABTestMfr.track.omniture.trackUnsetHandler"||"_abtemptyfn",trackSendHandler:"s.sendDataToOmniture"||"_abtemptyfn",trackValueDelimeter:","||","});
            </script>
            <script>
                TWP.ABTestBucket=TWP.ABTestBucket||[];TWP.ABTestBucket.push({"name":"recommendation","features":[{"name":"recommendation-strip","active":true,"increment":0,"end":"1424062800000","_token":"76dde4","defaultTrack":[{"name":"list1","dynamic":false,"value":"recommendation-strip:default"},{"name":"prop56","dynamic":false,"value":"recommendation-strip:default"},{"name":"list1","dynamic":false,"value":"recommendation-strip-76dde4"},{"name":"prop56","dynamic":false,"value":"recommendation-strip-76dde4"}],"variations":[{"customOptions":{"target":"33"},"name":"alt1","track":[{"name":"list1","dynamic":false,"value":"recommendation-strip:alt1"},{"name":"prop56","dynamic":false,"value":"recommendation-strip:alt1"},{"name":"list1","dynamic":false,"value":"recommendation-strip-76dde4"},{"name":"prop56","dynamic":false,"value":"recommendation-strip-76dde4"}]},{"customOptions":{"target":"33"},"name":"sidebar_alt1","track":[{"name":"list1","dynamic":false,"value":"recommendation-strip:sidebar_alt1"},{"name":"prop56","dynamic":false,"value":"recommendation-strip:sidebar_alt1"},{"name":"list1","dynamic":false,"value":"recommendation-strip-76dde4"},{"name":"prop56","dynamic":false,"value":"recommendation-strip-76dde4"}]}]},{"name":"recommendation-mostread","active":true,"increment":1,"end":"1425013200000","_token":"5af7e9","defaultTrack":[{"name":"list1","dynamic":false,"value":"recommendation-mostread:default"},{"name":"prop56","dynamic":false,"value":"recommendation-mostread:default"},{"name":"list1","dynamic":false,"value":"recommendation-mostread-5af7e9"},{"name":"prop56","dynamic":false,"value":"recommendation-mostread-5af7e9"}],"variations":[{"customOptions":{"target":"5"},"name":"chartbeat","track":[{"name":"list1","dynamic":false,"value":"recommendation-mostread:chartbeat"},{"name":"prop56","dynamic":false,"value":"recommendation-mostread:chartbeat"},{"name":"list1","dynamic":false,"value":"recommendation-mostread-5af7e9"},{"name":"prop56","dynamic":false,"value":"recommendation-mostread-5af7e9"}]}]}],"disabled":false});TWP.ABTestBucket.push({"name":"dummy","features":[{"name":"dummy-feature","active":true,"reglock":false,"end":"1418965200000","throttle":3.3333333333333335,"_token":"14376b","defaultTrack":[{"name":"list1","dynamic":false,"value":"dummy-feature:default"},{"name":"list1","dynamic":false,"value":"dummy-feature-14376b"}],"variations":[{"customOptions":{"target":"20"},"name":"easy1","track":[{"name":"list1","dynamic":false,"value":"dummy-feature:easy1"},{"name":"list1","dynamic":false,"value":"dummy-feature-14376b"}]},{"customOptions":{"target":"10"},"name":"easy2","track":[{"name":"list1","dynamic":false,"value":"dummy-feature:easy2"},{"name":"list1","dynamic":false,"value":"dummy-feature-14376b"}]}]}],"disabled":false});TWP.ABTestBucket.push({"name":"header","features":[{"name":"header-mastHead2","active":false,"increment":0,"end":"1416805200000","_token":"c15b6c","blacklist":{"referrers":["","washingtonpost.com"],"track":[{"name":"list1","dynamic":false,"value":"header-mastHead2:direct"}]},"defaultTrack":[{"name":"list1","dynamic":false,"value":"header-mastHead2:default"},{"name":"list1","dynamic":false,"value":"header-mastHead2-c15b6c"}],"variations":[{"customOptions":{"target":"5"},"name":"logoLarge","track":[{"name":"list1","dynamic":false,"value":"header-mastHead2:logoLarge"},{"name":"list1","dynamic":false,"value":"header-mastHead2-c15b6c"}]}]},{"name":"header-leaderboard","active":false,"increment":0,"end":"1423630800000","_token":"1f6567","defaultTrack":[{"name":"list1","dynamic":false,"value":"header-leaderboard:default"},{"name":"list1","dynamic":false,"value":"header-leaderboard-1f6567"}],"variations":[{"customOptions":{"target":"20"},"name":"below_sharebar","track":[{"name":"list1","dynamic":false,"value":"header-leaderboard:below_sharebar"},{"name":"list1","dynamic":false,"value":"header-leaderboard-1f6567"}]}]}],"disabled":false});TWP.ABTestBucket.push({"name":"subscription","features":[{"name":"subscription-popup","active":false,"increment":0,"end":"1425531600000","_token":"cb51bd","defaultTrack":[{"name":"list1","dynamic":false,"value":"subscription-popup:default"},{"name":"prop56","dynamic":false,"value":"subscription-popup:default"},{"name":"list1","dynamic":false,"value":"subscription-popup-cb51bd"},{"name":"prop56","dynamic":false,"value":"subscription-popup-cb51bd"}],"variations":[{"customOptions":{"target":"20"},"name":"enabled","track":[{"name":"list1","dynamic":false,"value":"subscription-popup:enabled"},{"name":"prop56","dynamic":false,"value":"subscription-popup:enabled"},{"name":"list1","dynamic":false,"value":"subscription-popup-cb51bd"},{"name":"prop56","dynamic":false,"value":"subscription-popup-cb51bd"}]}]},{"name":"subscription-mobilePopup","active":true,"increment":0,"end":"1426132800000","_token":"26a8c3","defaultTrack":[{"name":"list1","dynamic":false,"value":"subscription-mobilePopup:default"},{"name":"prop56","dynamic":false,"value":"subscription-mobilePopup:default"},{"name":"list1","dynamic":false,"value":"subscription-mobilePopup-26a8c3"},{"name":"prop56","dynamic":false,"value":"subscription-mobilePopup-26a8c3"}],"variations":[{"customOptions":{"target":"5"},"name":"enabled","track":[{"name":"list1","dynamic":false,"value":"subscription-mobilePopup:enabled"},{"name":"prop56","dynamic":false,"value":"subscription-mobilePopup:enabled"},{"name":"list1","dynamic":false,"value":"subscription-mobilePopup-26a8c3"},{"name":"prop56","dynamic":false,"value":"subscription-mobilePopup-26a8c3"}]}]},{"name":"subscription-rightRailText","active":false,"increment":0,"end":"1425618000000","_token":"419734","defaultTrack":[{"name":"list1","dynamic":false,"value":"subscription-rightRailText:default"},{"name":"prop56","dynamic":false,"value":"subscription-rightRailText:default"},{"name":"list1","dynamic":false,"value":"subscription-rightRailText-419734"},{"name":"prop56","dynamic":false,"value":"subscription-rightRailText-419734"}],"variations":[{"customOptions":{"target":"25"},"name":"version2","track":[{"name":"list1","dynamic":false,"value":"subscription-rightRailText:version2"},{"name":"prop56","dynamic":false,"value":"subscription-rightRailText:version2"},{"name":"list1","dynamic":false,"value":"subscription-rightRailText-419734"},{"name":"prop56","dynamic":false,"value":"subscription-rightRailText-419734"}]},{"customOptions":{"target":"25"},"name":"version3","track":[{"name":"list1","dynamic":false,"value":"subscription-rightRailText:version3"},{"name":"prop56","dynamic":false,"value":"subscription-rightRailText:version3"},{"name":"list1","dynamic":false,"value":"subscription-rightRailText-419734"},{"name":"prop56","dynamic":false,"value":"subscription-rightRailText-419734"}]},{"customOptions":{"target":"25"},"name":"version4","track":[{"name":"list1","dynamic":false,"value":"subscription-rightRailText:version4"},{"name":"prop56","dynamic":false,"value":"subscription-rightRailText:version4"},{"name":"list1","dynamic":false,"value":"subscription-rightRailText-419734"},{"name":"prop56","dynamic":false,"value":"subscription-rightRailText-419734"}]}]},{"name":"subscription-abcde","active":true,"increment":0,"end":"1428292800000","_token":"4748dc","defaultTrack":[{"name":"list1","dynamic":false,"value":"subscription-abcde:default"},{"name":"prop56","dynamic":false,"value":"subscription-abcde:default"},{"name":"list1","dynamic":false,"value":"subscription-abcde-4748dc"},{"name":"prop56","dynamic":false,"value":"subscription-abcde-4748dc"}],"variations":[{"customOptions":{"target":"4"},"name":"subPopup","track":[{"name":"list1","dynamic":false,"value":"subscription-abcde:subPopup"},{"name":"prop56","dynamic":false,"value":"subscription-abcde:subPopup"},{"name":"list1","dynamic":false,"value":"subscription-abcde-4748dc"},{"name":"prop56","dynamic":false,"value":"subscription-abcde-4748dc"}]},{"customOptions":{"target":"2"},"name":"newsletterPopup","track":[{"name":"list1","dynamic":false,"value":"subscription-abcde:newsletterPopup"},{"name":"prop56","dynamic":false,"value":"subscription-abcde:newsletterPopup"},{"name":"list1","dynamic":false,"value":"subscription-abcde-4748dc"},{"name":"prop56","dynamic":false,"value":"subscription-abcde-4748dc"}]},{"customOptions":{"target":"2"},"name":"inArticle","track":[{"name":"list1","dynamic":false,"value":"subscription-abcde:inArticle"},{"name":"prop56","dynamic":false,"value":"subscription-abcde:inArticle"},{"name":"list1","dynamic":false,"value":"subscription-abcde-4748dc"},{"name":"prop56","dynamic":false,"value":"subscription-abcde-4748dc"}]},{"customOptions":{"target":"2"},"name":"popupInArticle","track":[{"name":"list1","dynamic":false,"value":"subscription-abcde:popupInArticle"},{"name":"prop56","dynamic":false,"value":"subscription-abcde:popupInArticle"},{"name":"list1","dynamic":false,"value":"subscription-abcde-4748dc"},{"name":"prop56","dynamic":false,"value":"subscription-abcde-4748dc"}]}]}],"disabled":false});
            </script>
            <script>
                (function ABTestMfrAnonymous($,TWP,window,undefined){var user=TWP.ABTestUser;var ABTM={};var trk=ABTM.track={};var omni=trk.omniture={trackSetHandler:function(props){if(!!window.s){var pn;for(pn in props){if(props.hasOwnProperty(pn)){s[pn]=(s[pn]?[s[pn],props[pn]]:[props[pn]]).join(user.trackValueDelimeter);if(/evar/gi.test(pn)){window["wp_"+pn.toLowerCase()]=props[pn]}}}}},trackUnsetHandler:function(props){if(!!window.s){var pn;for(pn in props){if(props.hasOwnProperty(pn)){s[pn]=(s[pn]||"").replace(("string"==typeof props[pn]?[props[pn]]:props[pn]).join(user.trackValueDelimeter),"");if(!s[pn]){s[pn]=undefined}if(/evar/gi.test(pn)){window["wp_"+pn.toLowerCase()]=undefined}}}}},trackSendHandler:function(customLinkName,events,props){if(!!window.s){var originalValues={};originalValues.events=s.events;originalValues.linkTrackEvents=s.linkTrackEvents;if(events){s.events=("string"===typeof events?[events]:events).join(user.trackValueDelimeter)||undefined;s.linkTrackEvents=s.events}omni.trackSetHandler(props);s.tl(true,"o",customLinkName,{linkTrackVars:function(){var results=[];if(events){results.push("events")}var name;for(name in props){if(props.hasOwnProperty(name)){results.push(name)}}return results.join(user.trackValueDelimeter)}()});s.events=originalValues.events;s.linkTrackEvents=originalValues.linkTrackEvents;omni.trackUnsetHandler(props)}}};TWP.ABTestMfr=ABTM})(jQuery,TWP,window);
            </script>
        </div>
        </div>
        <script src="//js.washingtonpost.com/wp-srv/ad/loaders/latest/js/min/loader.min.js"
        async="" data-ad-page-type="responsive" data-ad-site="wp"></script>
        <script type="text/javascript" src="/pb/resources/compact/template/rZcHWoZzuToaTieQLcQMUOw/javascripts/cd3facb93dab53ddfe1ce0ea3bacb2a3.js?_=f4b3d2"></script>
        <script type="text/javascript" src="/pb/resource/footjs-rZcHWoZzuToaTieQLcQMUOw-6de5b76f.js?_=f4b3d2"></script>
        <script type="text/javascript" src="/pb/resource/instancejs-rZcHWoZzuToaTieQLcQMUOw-6de5b76f.js?_=f4b3d2"></script>
        <script type="text/javascript">
            window.TWPHead.ready("main.js",function(){window.TWP&&TWP.Analytics&&TWP.Analytics.init("production"=="production"?"":{suite:"preproduction"})});
        </script>
        <noscript>
            <img src="http://b.scorecardresearch.com/p?c1=2&c2=3005617&cv=2.0&cj=1"
            />
        </noscript>
        <script type="text/javascript" src="//widget.perfectmarket.com/wwwwashingtonpost/load.js"></script>
        <script type="text/javascript">
            (function($){try{if((!!window.localStorage&&!!localStorage.opbandit&&localStorage.opbandit=="F")){$.ajax({dataType:"script",cache:true,url:"//data.opbandit.com/loader.min.js?key=3e6382b012abc555",success:function(data){}})}var $tweetAuthors=$(".tweet-authors");if((!!$tweetAuthors.size()&&!window.twttr)){$.ajax({dataType:"script",cache:true,url:"//platform.twitter.com/widgets.js",success:function(data){$tweetAuthors.find(".pb-twitter-follow.unprocessed").removeClass("unprocessed")}})}$.ajax({dataType:"script",cache:true,url:"//ak.sail-horizon.com/horizon/v1.js",success:function(data){if(window.Sailthru){Sailthru.setup({domain:"horizon.washingtonpost.com"})}}})}catch(e){}})(jQuery);
        </script>
        <script type="text/javascript">
            !function(){if(!(Math.floor(100*Math.random())>99)){var a,b,c,d="//js.washingtonpost.com/wp-stat/rum/wprum.min.js",e=document.createElement("iframe");e.src="javascript:false",(e.frameElement||e).style.cssText="width: 0; height: 0; border: 0";var c=document.getElementsByTagName("script")[0];c.parentNode.insertBefore(e,c);try{b=e.contentWindow.document}catch(f){a=document.domain,e.src="javascript:var d=document.open();d.domain='"+a+"';void(0);",b=e.contentWindow.document}b.open()._l=function(){var b=this.createElement("script");a&&(this.domain=a),b.id="boomr-if-as",b.src=d,this.body.appendChild(b)},b.write('&lt;body onload="document._l();">'),b.close()}}();
        </script>
    </body>

</html>