Combatants For Peace            (function(){ window._fbds = window._fbds || {}; _fbds.pixelId = 1409408495978672; var fbds = document.createElement('script'); fbds.async = true; fbds.src = '//web.archive.org./web/20140724081906/http://connect.facebook.net/en_US/fbds.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(fbds, s); })(); window._fbq = window._fbq || []; window._fbq.push(["track", "PixelInitialized", {}]);             //       @import url(http://web.archive.org./web/20140724081906cs_/http://cfpeace.org/wp-content/plugins/event-calendar/ec3.css); .ec3_ec { background-image:url(http://web.archive.org./web/20140724081906im_/http://cfpeace.org/wp-content/plugins/event-calendar/ec.png) !IMPORTANT; background-image:none; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://cfpeace.org/wp-content/plugins/event-calendar/ec.png'); } #ec3_shadow0 { background-image:url(http://web.archive.org./web/20140724081906im_/http://cfpeace.org/wp-content/plugins/event-calendar/shadow0.png) !IMPORTANT; background-image:none; } #ec3_shadow0 div { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://cfpeace.org/wp-content/plugins/event-calendar/shadow0.png',sizingMethod='scale'); } #ec3_shadow1 { background-image:url(http://web.archive.org./web/20140724081906im_/http://cfpeace.org/wp-content/plugins/event-calendar/shadow1.png) !IMPORTANT; background-image:none; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://cfpeace.org/wp-content/plugins/event-calendar/shadow1.png',sizingMethod='crop'); } #ec3_shadow2 { background-image:url(http://web.archive.org./web/20140724081906im_/http://cfpeace.org/wp-content/plugins/event-calendar/shadow2.png) !IMPORTANT; background-image:none; } #ec3_shadow2 div { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://cfpeace.org/wp-content/plugins/event-calendar/shadow2.png',sizingMethod='scale'); }       hs.graphicsDir = 'http://web.archive.org./web/20140724081906/http://cfpeace.org/wp-content/plugins/kpicasa-gallery/highslide/graphics/'; hs.showCredits = false; hs.outlineType = 'rounded-white'; hs.wrapperClassName = 'highslide-white'; if (hs.registerOverlay) { hs.registerOverlay({ thumbnailId: null, overlayId: 'controlbar', position: 'top right', hideOnMouseOut: true }); }    .qtrans_flag span { display:none } .qtrans_flag { height:12px; width:18px; display:block } .qtrans_flag_and_text { padding-left:20px } .qtrans_flag_en { background:url(http://web.archive.org./web/20140724081906im_/http://cfpeace.org/wp-content/plugins/qtranslate/flags/gb.png) no-repeat } .qtrans_flag_IW { background:url(http://web.archive.org./web/20140724081906im_/http://cfpeace.org/wp-content/plugins/qtranslate/flags/il.png) no-repeat } .qtrans_flag_AR { background:url(http://web.archive.org./web/20140724081906im_/http://cfpeace.org/wp-content/plugins/qtranslate/flags/jo.png) no-repeat }     function Set_Cookie( name, value, expires, path, domain, secure ) { // set time in milliseconds var today = new Date(); today.setTime( today.getTime() ); if ( expires ) { expires = expires * 1000 * 60 * 60 * 24; } var expires_date = new Date( today.getTime() + (expires) ); document.cookie = name + "=" +escape( value ) + ( ( expires ) ? ";expires=" + expires_date.toGMTString() : "" ) + ( ( path ) ? ";path=" + path : "" ) + ( ( domain ) ? ";domain=" + domain : "" ) + ( ( secure ) ? ";secure" : "" ); }  function getTubePressBaseUrl(){return "http://web.archive.org./web/20140724081906/http://cfpeace.org/wp-content/plugins/tubepress";}       /*********************************************** * Gradual Highlight image script- © Dynamic Drive DHTML code library (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code ***********************************************/ var baseopacity=30 function slowhigh(which2){ imgobj=which2 browserdetect=which2.filters? "ie" : typeof which2.style.MozOpacity=="string"? "mozilla" : "" instantset(baseopacity) highlighting=setInterval("gradualfade(imgobj)",50) } function slowlow(which2){ cleartimer() instantset(baseopacity) } function instantset(degree){ if (browserdetect=="mozilla") imgobj.style.MozOpacity=degree/100 else if (browserdetect=="ie") imgobj.filters.alpha.opacity=degree } function cleartimer(){ if (window.highlighting) clearInterval(highlighting) } function gradualfade(cur2){ if (browserdetect=="mozilla" && cur2.style.MozOpacity<1) cur2.style.MozOpacity=Math.min(parseFloat(cur2.style.MozOpacity)+0.1, 0.99) else if (browserdetect=="ie" && cur2.filters.alpha.opacity<100) cur2.filters.alpha.opacity+=10 else if (window.highlighting) clearInterval(highlighting) }    /* CLOSED_IMAGE - the image to be displayed when the sublists are closed * OPEN_IMAGE - the image to be displayed when the sublists are opened */ CLOSED_IMAGE='http://web.archive.org./web/20140724081906/http://cfpeace.org/wp-content/themes/cfpeace/images/plus.png'; OPEN_IMAGE='http://web.archive.org./web/20140724081906/http://cfpeace.org/wp-content/themes/cfpeace/images/minus.png'; /* makeCollapsible - makes a list have collapsible sublists * * listElement - the element representing the list to make collapsible */ function makeCollapsible(listElement){ // removed list item bullets and the sapce they occupy listElement.style.listStyle='none'; listElement.style.marginLeft='0'; listElement.style.paddingLeft='0'; // loop over all child elements of the list var child=listElement.firstChild; while (child!=null){ // only process li elements (and not text elements) if (child.nodeType==1){ // build a list of child ol and ul elements and hide them var list=new Array(); var grandchild=child.firstChild; while (grandchild!=null){ if (grandchild.tagName=='OL' || grandchild.tagName=='UL'){ grandchild.style.display='none'; list.push(grandchild); } grandchild=grandchild.nextSibling; } // add toggle buttons var node=document.createElement('img'); node.setAttribute('src',CLOSED_IMAGE); node.setAttribute('class','collapsibleClosed'); node.onclick=createToggleFunction(node,list); child.insertBefore(node,child.firstChild); } child=child.nextSibling; } } /* createToggleFunction - returns a function that toggles the sublist display * * toggleElement - the element representing the toggle gadget * sublistElement - an array of elements representing the sublists that should * be opened or closed when the toggle gadget is clicked */ function createToggleFunction(toggleElement,sublistElements){ return function(){ // toggle status of toggle gadget if (toggleElement.getAttribute('class')=='collapsibleClosed'){ toggleElement.setAttribute('class','collapsibleOpen'); toggleElement.setAttribute('src',OPEN_IMAGE); }else{ toggleElement.setAttribute('class','collapsibleClosed'); toggleElement.setAttribute('src',CLOSED_IMAGE); } // toggle display of sublists for (var i=0;i  var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-16228386-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'http://web.archive.org./web/20140724081906/https://ssl' : 'http://web.archive.org./web/20140724081906/http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();  .mainmenu .blogen-cat { display:block }                 Englishעבריתالعربية              The Movement  About CFP Vision Partners   Events Projects Personal Stories Media  Photos Videos Press Blog CFP Blog HE Newsletters   Memorial Day Ceremony Contact Us Join us         (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//web.archive.org./web/20140724081906/http://connect.facebook.net/en_US/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));    Jul 2014 / No more bloodshed – Stop the war in Gaza protest   Sorry, this entry is only available in עברית.     Personal Stories   Wael Salame (East Jerusalem)  “If Palestinian freedom fighters and former Israeli soldiers can form a group with a common cause, then anyone can.” Photography by Dubi Roman Wael Salame lives in Anata, East Jerusalem. In 1990 he was arrested as he crossed into Israel from the West Bank on his way to blow up an Israeli police building. After five years [...]    Roni Segoly  My name is Roni and on Aug 2007 I joined the organization Combatants for Peace. Since then I have been an active member and this is My Personal Story. I grew up in Jerusalem in the 70s, the years of the feeling of euphoria after the 6 day war. I was a youngster and like most [...]    Chen Alon (Tel Aviv)  “My children were human, and yet we had dehumanized the Palestinian children” Photography by Dubi Roman Chen Alon is a theatre director, facilitator and lecturer at Tel Aviv University. Chen served for four years in the Israeli army and then for 11 years as an operations officer in the reserves. Later, he became a refusnik and as a result [...]    Projects   Non-violence project  The aim of the Non-Violence project is to equip the representatives of the local bi national groups with better knowledge and a more profound understanding of non-violence principles, so that they can teach the members of their own groups, and implement these principles in the field. A Seminar will mark the opening of a process, [...]    Educational Tours in the Southern Nablus Region  Combatants for Peace’s Tel Aviv – Nablus group runs monthly tours of the villages and settlements of the Southern Nablus region. In the tours we visit the Separation Barrier in Elkana, the Ariel area, and the illegal outposts of the Eli/Shilo settlement block. At the end of all the tours we meet with Palestinian activists of the [...]    Learning for Peace  Combatants for Peace invites you to “Studying for Peace” events that are maintained once a month. These are lecture and discussion meetings for CFP’s members and are open to the public. In the meeting we host public and intelectual figures, that are related to the Israeli-Palestinian conflict, for an hour lecture. We wish to allow [...]      Promotional Film       Blog "

A few days ago in an interview, i was asked the question “do you think film has the capacity to change lives?” 

 On “Within the Eye of the Storm” screenings in England   What's New?  fresh newsletter : April 2014 Check out Combatants for Peace Radio Show (Hebrew version)    לוחמים לשלום ברדיו כל השלום    Newsletter Click here to sign up to our newsletter and receive updates on upcoming activities     « Jun Aug »   July 2014  Sun Mon Tue Wed Thu Fri Sat    12345 6789101112 13141516171819 20212223242526 2728293031EC                   Read our blog

  

 Follow our twitter 

      Upcoming Events  26-07-2014: No more bloodshed - Stop the war in Gaza protest    Photos         Donate to CFP            CFP on Facebook         Designed and built by Noa Himelfarb & Alik Hochner | Original logo designed by Sahar Batzri | Logo redesigned by Amitai Sandy©2014 Combatants For Peace | Operated by Wordpress 

                jQuery(document).ready(function(){ var blogNewAddress = jQuery("#Blog a").attr("href"); jQuery("li.blog-cat a").attr("href", blogNewAddress); jQuery("li.blogen-cat a").attr("href", blogNewAddress); });