

<HTML>
 <HEAD>
 <title>جمعیت حامیان آزادی قدس شریف</title>
 <meta id="mtaKeyWords" content="جمعيت حاميان آزادي قدس شريف , قدس , روزقدس , انتفاضه, فلسطين , جمعيت , محمدتقي تقي پور, يهود , خاخام صهيونيست , اسرائيل,quds" name="keywords"></meta>
 <meta id="mtaDescription" content="جمعيت حاميان آزادي قدس شريف " name="description"></meta>
 <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
 <LINK href="/themes/mainskins/quds/Styles/Panel.css" rel="stylesheet"></LINK><LINK href="/themes/mainskins/quds/Styles/Skin.css" rel="stylesheet"></LINK><LINK href="/themes/mainskins/quds/Styles/General.css" rel="stylesheet"></LINK>
 </HEAD>
 <body id="body" bottomMargin="0" leftMargin="0" topMargin="0" rightMargin="0" MS_POSITIONING="GridLayout" OnClick="javascript:HideMenu();" OnLoad="javascript:InitMenu();">

 
 <script language="javascript" src="/Scripts/ajaxCore.js" type="text/javascript"></script>
 <script language="javascript" src="/scripts/javaCore.js" type="text/javascript"></script>

  <DIV id="divDefinitionTable" style="DISPLAY: none; POSITION: absolute">
  <TABLE id="table1" style="BORDER-RIGHT: 1px dotted; BORDER-TOP: 1px dotted; FILTER: dropShadow(color=#f3f3f3,offx=2,offy=2,positive=true); BORDER-LEFT: 1px dotted; BORDER-BOTTOM: 1px dotted; BORDER-COLLAPSE: collapse"
   borderColor="#808080" cellSpacing="4" cellPadding="5" width="300" border="1">
   <TR>
   <TD bgColor="#ffffff">
    <P id="pContent" dir="rtl" style="TEXT-ALIGN: justify">[MAIN]</P>
   </TD>
   </TR>
  </TABLE>
  </DIV>
  <DIV id="divDefinition" style="DISPLAY: none; POSITION: absolute"></DIV>
 

 <div id="jhfjkefkjfnkjsdf" align="center">
  <form name="frmDefault" method="post" action="/documents/document/0/11597/home-page.aspx" id="frmDefault">
<input type="hidden" name="__VIEWSTATE_KEY" value="VIEWSTATE_20120128_f7cf9701-9262-43b4-8596-a5d21f771e95_634633600142065248" />
<input type="hidden" name="__VIEWSTATE" value="" />
  
  <!-- Required Hidden Fields --><input name="h1" id="h1" type="hidden" />
  <input name="ht1" id="ht1" type="hidden" size="1" width="15px" /> <input name="ht2" id="ht2" type="hidden" size="1" width="15px" />
  <input name="htContentSite" id="htContentSite" type="hidden" size="1" width="15px" />
  <!-- Required Fields -->
  <div id="divPopUpMessage" style="DISPLAY: none; Z-INDEX: 101; POSITION: absolute"></div>
  
  <!-- End Required Fields -->
<style>

  .titles{
  text-align:right;
  color:#FFFFFF;

}

.ModulesBlock{
padding:5px;
}

.fr {
 float: right;
 padding: 3px;
 background: #FFF;
 border: 1px solid silver;
 background-color: #F3F1F4;
}
  </style>
  <script language="javascript" src="/Scripts/jq.js" type="text/javascript"></script>
 <script language="javascript" src="/Scripts/jm.js" type="text/javascript"></script>

 <script type="text/javascript" src="/js/jquery.js"></script>
 <script type="text/javascript" src="/js/easySlider1.5.js"></script>
 <script type="text/javascript">
 
(function($) {

  $.fn.innerfade = function(options) {
    return this.each(function() {  
      $.innerfade(this, options);
    });
  };

  $.innerfade = function(container, options) {
    var settings = {
     'animationtype':  'fade',
      'speed':      'normal',
      'type':       'sequence',
      'timeout':     2000,
      'containerheight': 'auto',
      'runningclass':   'innerfade',
      'children':     null
    };
    if (options)
      $.extend(settings, options);
    if (settings.children === null)
      var elements = $(container).children();
    else
      var elements = $(container).children(settings.children);
    if (elements.length > 1) {
      $(container).css('position', 'relative').css('height', settings.containerheight).addClass(settings.runningclass);
      for (var i = 0; i < elements.length; i++) {
        $(elements[i]).css('z-index', String(elements.length-i)).css('position', 'absolute').hide();
      };
      if (settings.type == "sequence") {
        setTimeout(function() {
          $.innerfade.next(elements, settings, 1, 0);
        }, settings.timeout);
        $(elements[0]).show();
      } else if (settings.type == "random") {
       var last = Math.floor ( Math.random () * ( elements.length ) );
        setTimeout(function() {
          do { 
      current = Math.floor ( Math.random ( ) * ( elements.length ) );
     } while (last == current );       
     $.innerfade.next(elements, settings, current, last);
        }, settings.timeout);
        $(elements[last]).show();
   } else if ( settings.type == 'random_start' ) {
    settings.type = 'sequence';
    var current = Math.floor ( Math.random () * ( elements.length ) );
    setTimeout(function(){
     $.innerfade.next(elements, settings, (current + 1) % elements.length, current);
    }, settings.timeout);
    $(elements[current]).show();
   } else {
    alert('Innerfade-Type must either be \'sequence\', \'random\' or \'random_start\'');
   }
  }
  };

  $.innerfade.next = function(elements, settings, current, last) {
    if (settings.animationtype == 'slide') {
      $(elements[last]).slideUp(settings.speed);
      $(elements[current]).slideDown(settings.speed);
    } else if (settings.animationtype == 'fade') {
      $(elements[last]).fadeOut(settings.speed);
      $(elements[current]).fadeIn(settings.speed, function() {
    removeFilter($(this)[0]);
   });
    } else
      alert('Innerfade-animationtype must either be \'slide\' or \'fade\'');
    if (settings.type == "sequence") {
      if ((current + 1) < elements.length) {
        current = current + 1;
        last = current - 1;
      } else {
        current = 0;
        last = elements.length - 1;
      }
    } else if (settings.type == "random") {
      last = current;
      while (current == last)
        current = Math.floor(Math.random() * elements.length);
    } else
      alert('Innerfade-Type must either be \'sequence\', \'random\' or \'random_start\'');
    setTimeout((function() {
      $.innerfade.next(elements, settings, current, last);
    }), settings.timeout);
  };

})(jQuery);

// **** remove Opacity-Filter in ie ****
function removeFilter(element) {
 if(element.style.removeAttribute){
 element.style.removeAttribute('filter');
 }
}


 $(document).ready(function(){ 
  /*$("#slider").easySlider({
  auto: true,
  continuous: true , 
  prevText: '',
  nextText: '',
  speed: 800,
  pause: 4000

  });
  $("#sliderNews").easySlider({
  auto: true,
  continuous: true , 
  vertical: true, 
  prevText: '',
  nextText: ''
  });*/
  
$('#sliderNews').css('display','block');
$('#sliderNews').innerfade({
      speed: 'fast', 
      timeout: 8000, 
      type: 'sequence',
      containerheight : '80px',
      containerwidth : '405px'
     }); 

 }); 
 </script>

<style type="text/css">
  

/* Easy Slider */

 #slider{} 
 #slider ul, #slider li{
 margin:0;
 padding:0;
 list-style:none;
 }
 #slider li{ 
 /* 
  define width and height of list item (slide)
  entire slider area will adjust according to the parameters provided here
 */ 
 width:650px;
 height:15px;
 overflow:hidden; 
 }
/* 
 #sliderNews{} 
 #sliderNews ul, #sliderNews li{
 margin:0;
 padding:0;
 list-style:none;
 }
 #sliderNews li{ 
 width:446px;
 height:121px;
 overflow:hidden; 
 }  
*/ 
/* // Easy Slider */

</style>
<table id="Table_01" width="1001" height="751" border="0" cellpadding="0" cellspacing="0" align="center">
 <tr>
 <td colspan="7" bgcolor="#aac3e7">
 
  <table width="92%" border="0" cellpadding="2" cellspacing="0" align="center">
 <tr>
 <td align=left>فارسی | العربی | English</td>
 <td align=right>صفحه اصلی | عضویت | ماهنامه نسیم قدس | پبوند ها | درباره ما | ارتباط با ما</td>
 </tr>
  </table>
 </td>
 <td>
  <img src="/Themes/MainSkins/quds/images/spacer.gif" width="1" height="15" alt=""></td>
 </tr>
 <tr>
 <td>
  <img src="/Themes/MainSkins/quds/images/1_02.jpg" width="33" height="115" alt=""></td>
 <td colspan="5">
  <img src="/Themes/MainSkins/quds/images/1_03.jpg" width="934" height="115" alt="">
  
  
   
<table style="position:absolute;" id="spnDateTime">
<tr><td nowrap>
شنبه 8 بهمن 1390

٤ ربيع الاول ١٤٣٣
</td></tr>
</table>
<script>
$("#spnDateTime").css({'left':(screen.width/2)+120,'top':110})

</script>

  </td>
 <td>
  <img src="/Themes/MainSkins/quds/images/1_04.jpg" width="40" height="115" alt=""></td>
 <td>
  <img src="/Themes/MainSkins/quds/images/spacer.gif" width="1" height="115" alt=""></td>
 </tr>
 <tr>
 <td colspan="3">
  <img src="/Themes/MainSkins/quds/images/1_05.jpg" width="36" height="20" alt=""></td>
 <td colspan="2" background="/Themes/MainSkins/quds/images/1_06.jpg" align="center">
 
 <table cellpadding="0" cellspacing="0" width="99%" align="center">
  <tr>
  
   <td width="25%" >
   <table cellpadding="0" cellspacing="0" border="0">
    <tr><td>
    <input type="button" value="جستجو" style="width:70;height:16px;font-size:9px;font-family:tahoma;border:1px solid #787878;background-color: #DAE1FF;" onclick="javascript:location.href='/default.aspx?page=search&app=search&srch='+document.getElementById('txtSearch').value;" 
     >
    </td><td>
&nbsp;
    <input type="text" id="txtSearch" style="width:120;height:18px;font-size:9px;font-family:tahoma;background-color: #DAE1FF;" />
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td></tr></table>
   </td>
<style>
.jstop{
 color:#ffffff;
 background-color:#316ac6;
}
</style>
   <td id="Theme_tdLatestTitleNews" width="75%" dir="rtl" align="right">
 <span class="tickerpane"> <span id="theTicker">...</span></span>
 <formTemp name="Form1" method="post" action="GetLocalBlock.aspx?app=documents&page=document&docId=11598&RequestFromHttpRequest=yes" id="Form1" OnSubmit="javascript:PostAjaxForm(this);return false;">
<input type="hidden" name="__VIEWSTATE" value="dDwxMTg0NDMxNDIxOzs+6NIBjgy/RT95iMdSm7enNuJJw60=" />

 
<span dir=rtl>
<div id="slider">
<ul>
  <li><a href="/default.aspx?app=ArticleManagement&page=ArticleView&catId=3&catParId=0&artId=44&Type=2">اينشتين؛ خداي علم</a>&nbsp;&nbsp; </li>
  <li><a href="/default.aspx?app=ArticleManagement&page=ArticleView&catId=3&catParId=0&artId=50&Type=2">ويراستاري&nbsp;</a>&nbsp; </li>
  <li><font color="#000080"><a href="/default.aspx?app=ArticleManagement&page=ArticleView&catId=3&catParId=0&artId=46&Type=2">جهاني سازي</a>&nbsp;&nbsp;&nbsp;</font> </li>
  <li><a href="/default.aspx?app=ArticleManagement&page=ArticleView&catId=3&catParId=0&artId=40&Type=2">احساس خطر؟!</a>&nbsp; </li>
  <li><a href="http://hamyanequds.ir/default.aspx?app=ArticleManagement&page=ArticleView&catId=3&catParId=0&artId=22&Type=2">كمي هم درباره فرهنگ</a>&nbsp;&nbsp; </li>
</ul>
</div>
</span>

<table id="_ctl0_tblDocument" dir="rtl" cellspacing="0" cellpadding="0" width="100%" border="0" background="/ParsDesign/files/Backgrounds/11598.">
 <tr>
 <TD colspan="2" valign="top"></TD>
 </tr>
 <tr>
 </tr>
 <tr>
 </tr>
 <tr>
 </tr>
</table>


</formTemp>

</td>

 
 <script>
 var theSummaries = [];
$("div#slider ul li").each(function() { theSummaries.push($(this).text()) });
 var theSiteLinks = [];
$("div#slider ul li").each(function() { theSiteLinks.push($(this).find("a").attr('href')) });
$("div#slider ul li").hide();

if($.browser.msie){
 $('#sliderNewsParent').css('position','absolute').css('left','194');
}

 </script>
  

 <script type="text/javascript" src="/js/news_char.js"></script>
  </tr>
  </table>
 
 </td>
 <td colspan="2" rowspan="2" width="42" height="21" valign=top>
  <img src="/Themes/MainSkins/quds/images/1_07.jpg" width="42" height="21" alt=""></td>
 <td width="1" height="20" valign=top>
  <img src="/Themes/MainSkins/quds/images/spacer.gif" width="1" height="20" alt=""></td>
 </tr>
 <tr>
 <td colspan="2" rowspan="2" background="/Themes/MainSkins/quds/images/1_08.jpg">
  <img src="/Themes/MainSkins/quds/images/1_08.jpg" width="35" height="570" alt=""></td>
 <td colspan="3" rowspan="2" bgcolor="#c9d1fe">
 
 
 
 


  <table width="100%" align="center">
  <tr>
   <td width="18%" valign="top">
   <!-- Start block -->

   <table id="Table_01" width="224" height="103" border="0" cellpadding="0" cellspacing="0">
 <tr background="/themes/mainskins/quds/images/blk_02.jpg">
 <td colspan="2">
  <img src="/themes/mainskins/quds/images/blk_01.jpg" width="146" height="31" alt=""></td>
 <td background="/themes/mainskins/quds/images/blk_02.jpg" align="right" class="titles">نسیم قدس</td>
 <td>
  <img src="/themes/mainskins/quds/images/blk_03.jpg" width="7" height="31" alt=""></td>
 </tr>
 <tr>
 <td background="/themes/mainskins/quds/images/blk_04.jpg">
  <img src="/themes/mainskins/quds/images/blk_04.jpg" width="7" height="52" alt=""></td>
 <td colspan="2" bgcolor="#dae1ff" align="right" dir="rtl">
 
 <span id="tdNasimeQuds"></span><script>GetLocalBlock("/GetLocalBlock.aspx?app=documents&page=document&docId=11601","tdNasimeQuds");</script>
 </td>
 <td background="/themes/mainskins/quds/images/blk_06.jpg">
  <img src="/themes/mainskins/quds/images/blk_06.jpg" width="7" height="52" alt=""></td>
 </tr>
 <tr>
 <td>
  <img src="/themes/mainskins/quds/images/blk_07.jpg" width="7" height="8" alt=""></td>
 <td colspan="2" background="/themes/mainskins/quds/images/blk_08.jpg">
  <img src="/themes/mainskins/quds/images/blk_08.jpg" width="210" height="8" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/blk_09.jpg" width="7" height="8" alt=""></td>
 </tr>
 <tr>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="7" height="1" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="139" height="1" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="71" height="1" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="7" height="1" alt=""></td>
 </tr>
</table>
   
   <!-- End block -->
   <!-- Start block -->
   <table id="Table_01" width="224" height="103" border="0" cellpadding="0" cellspacing="0">
 <tr background="/themes/mainskins/quds/images/blk_02.jpg">
 <td colspan="2">
  <a href="/default.aspx?app=ArticleManagement&page=ArticleListView&CatParId=3" title="آرشیو"><img src="/themes/mainskins/quds/images/blk_01.jpg" width="146" height="31" alt="" border=0></a></td>
 <td background="/themes/mainskins/quds/images/blk_02.jpg" align="right" class="titles">
 مقالات</td>
 <td>
  <img src="/themes/mainskins/quds/images/blk_03.jpg" width="7" height="31" alt=""></td>
 </tr>
 <tr>
 <td background="/themes/mainskins/quds/images/blk_04.jpg">
  <img src="/themes/mainskins/quds/images/blk_04.jpg" width="7" height="52" alt=""></td>
 <td colspan="2" bgcolor="#dae1ff" align="right" dir="rtl">
<span id="tdYaddashtha"></span><script>GetLocalBlock("/GetLocalBlock.aspx?app=ArticleManagement&page=art_titles&CatId=3&max=6","tdYaddashtha");</script>
 
 </td>
 <td background="/themes/mainskins/quds/images/blk_06.jpg">
  <img src="/themes/mainskins/quds/images/blk_06.jpg" width="7" height="52" alt=""></td>
 </tr>
 <tr>
 <td>
  <img src="/themes/mainskins/quds/images/blk_07.jpg" width="7" height="8" alt=""></td>
 <td colspan="2" background="/themes/mainskins/quds/images/blk_08.jpg">
  <img src="/themes/mainskins/quds/images/blk_08.jpg" width="210" height="8" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/blk_09.jpg" width="7" height="8" alt=""></td>
 </tr>
 <tr>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="7" height="1" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="139" height="1" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="71" height="1" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="7" height="1" alt=""></td>
 </tr>
</table>
   
   <!-- End block -->
   <!-- Start block -->

<table id="Table_01" width="224" height="103" border="0" cellpadding="0" cellspacing="0">
 <tr background="/themes/mainskins/quds/images/blk_02.jpg">
 <td colspan="2">
  <a href="/default.aspx?app=ArticleManagement&page=ArticleListView&CatParId=2" title="آرشیو"><img src="/themes/mainskins/quds/images/blk_01.jpg" border=0 width="146" height="31" alt=""></a></td>
 <td background="/themes/mainskins/quds/images/blk_02.jpg" align="right" class="titles">بيانيه</td>
 <td>
  <img src="/themes/mainskins/quds/images/blk_03.jpg" width="7" height="31" alt=""></td>
 </tr>
 <tr>
 <td background="/themes/mainskins/quds/images/blk_04.jpg">
  <img src="/themes/mainskins/quds/images/blk_04.jpg" width="7" height="52" alt=""></td>
 <td colspan="2" bgcolor="#dae1ff" align="right" dir="rtl"> 
    
<span id="tdLatestArticles2"></span><script>GetLocalBlock("/GetLocalBlock.aspx?app=ArticleManagement&page=art_titles&CatId=2&max=6","tdLatestArticles2");</script>

</td>
 <td background="/themes/mainskins/quds/images/blk_06.jpg">
  <img src="/themes/mainskins/quds/images/blk_06.jpg" width="7" height="52" alt=""></td>
 </tr>
 <tr>
 <td>
  <img src="/themes/mainskins/quds/images/blk_07.jpg" width="7" height="8" alt=""></td>
 <td colspan="2" background="/themes/mainskins/quds/images/blk_08.jpg">
  <img src="/themes/mainskins/quds/images/blk_08.jpg" width="210" height="8" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/blk_09.jpg" width="7" height="8" alt=""></td>
 </tr>
 <tr>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="7" height="1" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="139" height="1" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="71" height="1" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="7" height="1" alt=""></td>
 </tr>
</table>

   
   <!-- End block -->
   </td>
   <td width="65%" valign="top">
   
   <!-- Start block -->
   
   <table id="Table_01" width="100%" height="101" border="0" cellpadding="0" cellspacing="0">
   <tr>
    <td>
    <img src="/themes/mainskins/quds/images/topNews_01.jpg" width="7" height="5" alt=""></td>
    <td background="/themes/mainskins/quds/images/topNews_02.jpg"></td>
    <td>
    <img src="/themes/mainskins/quds/images/topNews_03.jpg" width="9" height="5" alt=""></td>
   </tr>
   <tr>
    <td background="/themes/mainskins/quds/images/topNews_04.jpg" width="7">
    <img src="/themes/mainskins/quds/images/topNews_04.jpg" width="7" height="139" alt=""></td>
    <td id="Theme_tdLatestNews" bgcolor="#b2c0fb" dir="rtl" align="right" valign="top">
    <formTemp name="Form1" method="post" action="GetLocalBlock.aspx?app=news&page=NewsSlide&docId=11611&RequestFromHttpRequest=yes" id="Form1" OnSubmit="javascript:PostAjaxForm(this);return false;">
<input type="hidden" name="__VIEWSTATE" value="dDwxMTg0NDMxNDIxOzs+6NIBjgy/RT95iMdSm7enNuJJw60=" />

 

<div id="sliderNewsParent">
<div id="sliderNews" style="display:none;">
 
<div>
<TABLE id=Table1 dir=rtl cellSpacing=5 cellPadding=1 width="100%" border=0>
 <TR>
  <TD vAlign=top width="120" bgcolor="#F3F1F4" ><IMG 
   src="/ParsDesign/Files/News/11682.png" width="120" Height="120" class="fr"></TD>

  <TD style="font-size:10px;" valign=top>خبر بالا</TD></TR></TABLE>
</div>

<div>
<TABLE id=Table1 dir=rtl cellSpacing=5 cellPadding=1 width="100%" border=0>
 <TR>
  <TD vAlign=top width="120" bgcolor="#F3F1F4" ><IMG 
   src="/ParsDesign/Files/News/11679.jpg" width="120" Height="120" class="fr"></TD>

  <TD style="font-size:10px;" valign=top><p align="justify"><strong><a href="http://hamyanequds.ir/default.aspx?page=NewsItemShow&app=News&PageNumber=1&docParId=11589&docId=11678"><font color="#ff6600">کارکنان سفارت رژيم صهيونيستي در مصرگریختند</font></a></strong> <br />
<br />
کارکنان سفارت رژيم صهيونيستي در مصر قبل از نزديک شدن تظاهرکنندگان به اين ساختمان در مجاورت دانشگاه قاهره در منطقه جيزه، از اين کشور فرار کردند.به گزارش شبکه خبري العالم، يک بالگرد کارمندان سفارت رژيم صهيونيستي را ابتدا به ......</p></TD></TR></TABLE>
</div>

<div>
<TABLE id=Table1 dir=rtl cellSpacing=5 cellPadding=1 width="100%" border=0>
 <TR>
  <TD vAlign=top width="120" bgcolor="#F3F1F4" ><IMG 
   src="/ParsDesign/Files/News/11677.jpg" width="120" Height="120" class="fr"></TD>

  <TD style="font-size:10px;" valign=top><p align="justify"><a href="/default.aspx?page=NewsItemShow&app=News&PageNumber=1&docParId=11589&docId=11674"><strong><font color="#ff6600">هاآرتص: اگر مسیح هم ظهور کند اسراییل او را دیپورت می&zwnj;کند!</font></strong></a> <br />
<br />
یک نویسنده مشهور صهیونیست در مقاله&zwnj;ای رژیم صهیونیستی را به تمسخر گرفت و نوشت: اگر مسیح هم ظهور کند، رژیم اسراییل او را دیپورت خواهد کرد!به گزارش ادیان نیوز، روزنامه صهیونیستی هاآرتص در مقاله&zwnj;ای به قلم &quot;یوری آونری&quot;، نویسنده معروف این روزنامه نوشت.... <br />
</p></TD></TR></TABLE>
</div>

<div>
<TABLE id=Table1 dir=rtl cellSpacing=5 cellPadding=1 width="100%" border=0>
 <TR>
  <TD vAlign=top width="120" bgcolor="#F3F1F4" ><IMG 
   src="/ParsDesign/Files/News/11675.jpg" width="120" Height="120" class="fr"></TD>

  <TD style="font-size:10px;" valign=top><p align="justify"><strong><a href="http://hamyanequds.ir/default.aspx?page=NewsItemShow&app=News&PageNumber=1&docParId=11589&docId=11673"><font color="#ff6600">لابي يهود در سياست لندن</font></a></strong> <br />
<br />
لابي ثروت&zwnj;مند يهودي &quot;دوستان اسرائيل &quot;، با پرداخت پول، به عامل تعيين&zwnj;كننده سياست&zwnj;هاي انگليس تبديل شده است.فارس به نقل از شبكه خبري پرس&zwnj;تي وي خبر داد: اعضاي هيات امناي لابي دوستان اسرائيل وابسته به حزب محافظه&zwnj;كار و.... <br />
</p></TD></TR></TABLE>
</div>

<div>
<TABLE id=Table1 dir=rtl cellSpacing=5 cellPadding=1 width="100%" border=0>
 <TR>
  <TD vAlign=top width="120" bgcolor="#F3F1F4" ><IMG 
   src="/ParsDesign/Files/News/11672.jpg" width="120" Height="120" class="fr"></TD>

  <TD style="font-size:10px;" valign=top><p align="justify"><strong><a href="http://hamyanequds.ir/default.aspx?page=ArticleView&app=ArticleManagement&catId=2&catParId=2&artId=51&Type=2"><font color="#ff6600">بيانيه جمعيت به مناسبت دومين سالروز حماسه مقاومت مردم مسلمان غزه</font></a></strong> </p>
<p align="justify">اين ايام مقارن با دومين سالگرد حماسه مقاومت و پايداري مردم مسلمان غزه در برابر تهاجم وحشيانه 22 روزه ارتش رژيم صهيونيستي است.اين ايام مقارن با دومين سالگرد حماسه مقاومت و پايداري مردم مسلمان غزه در برابر تهاجم وحشيانه 22 روزه ارتش رژيم صهيونيستي است. <br />
<br />
</p></TD></TR></TABLE>
</div>

<div>
<TABLE id=Table1 dir=rtl cellSpacing=5 cellPadding=1 width="100%" border=0>
 <TR>
  <TD vAlign=top width="120" bgcolor="#F3F1F4" ><IMG 
   src="/ParsDesign/Files/News/11671.jpg" width="120" Height="120" class="fr"></TD>

  <TD style="font-size:10px;" valign=top><p align="justify"><strong><a href="http://hamyanequds.ir/default.aspx?page=NewsItemShow&app=News&PageNumber=1&docParId=11589&docId=11668"><font color="#ff6600">اسرائیل و تجزیه طلبان سودان</font></a></strong> <br />
<br />
تجزيه سرزمين سودان دسیسه ای هدفمند که صهیونیستها در آن نقش اصلي را به عهده دارند.به نوشته سرهنگ &quot;موشه فرجی&quot; نویسنده کتاب &quot;نقش موساد در آفریقا&quot; حضور رژیم صهیونیستی در....<br />
</p></TD></TR></TABLE>
</div>

<div>
<TABLE id=Table1 dir=rtl cellSpacing=5 cellPadding=1 width="100%" border=0>
 <TR>
  <TD vAlign=top width="120" bgcolor="#F3F1F4" ><IMG 
   src="/ParsDesign/Files/News/11670.jpg" width="120" Height="120" class="fr"></TD>

  <TD style="font-size:10px;" valign=top><p align="justify"><strong><a href="http://hamyanequds.ir/default.aspx?page=NewsItemShow&app=News&PageNumber=1&docParId=11589&docId=11669"><font color="#ff6600">موسسات وابسته به موساد در عراق</font></a></strong> <br />
<br />
دبیرکل هیئت علمای مسلمان عراق از فعالیت برخی شرکت&zwnj;های وابسته به سازمان جاسوسی موساد، در عراق خبر داده است.حارث الضاری، دبیرکل هیئت علمای مسلمان عراق درهمین خصوص اعلام کرد که شرکت&zwnj;های اسراییلی به طور مشخص در منطقه کردستان واقع در شمال این کشور، فعال هستند. <br />
<br />
</p></TD></TR></TABLE>
</div>

</div>
</div>







</formTemp>

</td>

    <td background="/themes/mainskins/quds/images/topNews_06.jpg" width="9">
    <img src="/themes/mainskins/quds/images/topNews_06.jpg" width="9" height="139" alt=""></td>
   </tr>
   <tr>
    <td>
    <img src="/themes/mainskins/quds/images/topNews_07.jpg" width="7" height="7" alt=""></td>
    <td background="/themes/mainskins/quds/images/topNews_08.jpg" height="7">
    <img src="/themes/mainskins/quds/images/topNews_08.jpg" width="449" height="7" alt=""></td>
    <td>
    <img src="/themes/mainskins/quds/images/topNews_09.jpg" width="9" height="7" alt=""></td>
   </tr>
   </table>
   <!-- End block -->
   
   
   <!-- Start Bottom Block -->
   
   
   
   <table id="Table_01" width="100%" height="450" border="0" cellpadding="0" cellspacing="0">
   <tr background="/themes/mainskins/quds/images/block_ment_02.jpg">
    <td>
    <img src="/themes/mainskins/quds/images/block_ment_01.jpg" width="5" height="3" alt=""></td>
    <td background="/themes/mainskins/quds/images/block_ment_02.jpg" height="3">
    <img src="/themes/mainskins/quds/images/block_ment_02.jpg" width="214" height="3" alt=""></td>
    <td colspan="2" width="5" height="3" align="right" valign=top>
    <img src="/themes/mainskins/quds/images/block_ment_03.jpg" width="5" height="3" alt=""></td>
   </tr>
   <tr>
    <td width="5" height="1">
    <img src="/themes/mainskins/quds/images/block_ment_04.jpg" width="5" height="1" alt=""></td>
    <td id="Theme_tdMain" colspan="2" rowspan="3" bgcolor="#dae1ff" align="right" valign="top" style="padding:5px;">
    
    صفحه اصلی 

<span dir=rtl>
<table dir="rtl" cellspacing="3" cellpadding="0" width="100%" align="center" summary="" border="0">
  <tbody>
    <tr>
      <td>
      <table height="77" cellspacing="1" cellpadding="1" width="77" summary="" border="1">
        <tbody>
          <tr>
            <td>
            <p align="center"><a href="/Default.aspx?app=ArticleManagement&page=ArticleView&catParId=7&catId=7&artId=16&Type=1"><img height="75" alt="پژوهه دين" width="75" src="/UserFiles/Image/1389/rahbar75.jpg" /></a></p>
            </td>
          </tr>
        </tbody>
      </table>
      </td>
      <td>
      <p align="justify"><strong><a href="/Default.aspx?app=ArticleManagement&page=ArticleView&catParId=7&catId=7&artId=16&Type=1"><font color="#808000">پیام رهبر معظم انقلاب اسلامی در پی حمله جنایتکارانه رژیم صهیونیستی به کاروان دریائی امدادی</font></a></strong>&nbsp;&nbsp;<br />
      حمله&zwnj;ي جنايتكارانه و قساوت&zwnj;آميز رژيم صهيونيست به كاروان دريائي امدادي و بشردوستانه، حلقه&zwnj;ي ديگري از زنجيره&zwnj;ي جنايتهاي بزرگي است كه آن حكومت شرير و خبيث، هفتمين دهه&zwnj;ي حيات ننگين خود را با آن انباشته است. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <font color="#808000"><br />
      <strong><a href="/Default.aspx?app=ArticleManagement&page=ArticleView&catParId=7&catId=7&artId=16&Type=1"><font color="#808000">ادامه</font></a></strong></font><strong><a href="javascript:void(0);/*1275387868296*/"><font color="#808000"> </font></a></strong><br />
      <table height="18" cellspacing="0" cellpadding="0" width="300" align="center" summary="" border="0">
        <tbody>
          <tr>
            <td><img height="18" alt="" width="300" src="/UserFiles/Image/icon/lin300.gif" /></td>
          </tr>
        </tbody>
      </table>
      </p>
      </td>
    </tr>
  </tbody>
</table>
<table dir="rtl" cellspacing="3" cellpadding="0" width="100%" align="center" summary="" border="0">
  <tbody>
    <tr>
      <td>
      <table height="77" cellspacing="1" cellpadding="1" width="77" summary="" border="1">
        <tbody>
          <tr>
            <td>
            <p align="center"><a href="/default.aspx?app=ArticleManagement&page=ArticleView&catId=4&catParId=0&artId=6&Type=2"><img height="75" alt="پژوهه دين" width="75" src="/UserFiles/Image/1389/1/khakham100.jpg" /></a></p>
            </td>
          </tr>
        </tbody>
      </table>
      </td>
      <td>
      <p align="justify"><strong><a href="/default.aspx?app=ArticleManagement&page=ArticleView&catId=4&catParId=0&artId=6&Type=2"><font color="#808000">جايگاه و تاثير و نفوذ خاخام&zwnj;ها در اسرائيل مغفول مانده است</font></a></strong>&nbsp;<br />
      الان شما ببينيد يك خاخام يهودي، يا راب اعظم اسرائيل يا شوراي خاخامي اسرائيل، اسرائيل قانون اساسي كه ندارد، بلكه بر اساس موقعيت ومصالح خودشان در هر زمان قانون مي&zwnj;گذارند..<br />
      <a href="/default.aspx?app=ArticleManagement&page=ArticleView&catId=4&catParId=0&artId=6&Type=2"><font color="#808000"><strong>ادامه</strong><br />
      </font></a>
      <table height="18" cellspacing="0" cellpadding="0" width="300" align="center" summary="" border="0">
        <tbody>
          <tr>
            <td><img height="18" alt="" width="300" src="/UserFiles/Image/icon/lin300.gif" /></td>
          </tr>
        </tbody>
      </table>
      </p>
      </td>
    </tr>
  </tbody>
</table>
<table dir="rtl" cellspacing="3" cellpadding="0" width="100%" align="center" summary="" border="0">
  <tbody>
    <tr>
      <td>
      <table height="77" cellspacing="1" cellpadding="1" width="77" summary="" border="1">
        <tbody>
          <tr>
            <td>
            <p align="center"><a href="/default.aspx?app=ArticleManagement&page=ArticleView&catId=3&catParId=0&artId=38&Type=2"><img height="75" alt="پژوهه دين" width="75" src="/UserFiles/Image/1389/1/pahlavi75.jpg" /></a></p>
            </td>
          </tr>
        </tbody>
      </table>
      </td>
      <td>
      <p align="justify"><strong><a href="/default.aspx?app=ArticleManagement&page=ArticleView&catId=3&catParId=0&artId=38&Type=2"><font color="#808000">ايران، اسرائيل و سقوط رژيم پهلوي</font></a></strong><br />
      تشيع، مقاومت و انقلاب&raquo; عنوان يك كنفرانس بين&lrm;المللي بود كه در آذر ماه سال 1363 ش/ دسامبر 1984م، در مركز مطالعات استراتژيك دايانِ دانشگاه تل آويو برگزار شد.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
      <font color="#808000">&nbsp;</font><a href="/default.aspx?app=ArticleManagement&page=ArticleView&catId=3&catParId=0&artId=38&Type=2"><font color="#808000"><strong>ادامه</strong> <br />
      </font></a>
      <table height="18" cellspacing="0" cellpadding="0" width="300" align="center" summary="" border="0">
        <tbody>
          <tr>
            <td><img height="18" alt="" width="300" src="/UserFiles/Image/icon/lin300.gif" /></td>
          </tr>
        </tbody>
      </table>
      </p>
      </td>
    </tr>
  </tbody>
</table>
<table dir="rtl" cellspacing="3" cellpadding="0" width="100%" align="center" summary="" border="0">
  <tbody>
    <tr>
      <td>
      <table height="77" cellspacing="1" cellpadding="1" width="77" summary="" border="1">
        <tbody>
          <tr>
            <td>
            <p align="center"><a href="/default.aspx?app=ArticleManagement&page=ArticleView&catId=8&catParId=0&artId=42&Type=2"><img height="75" alt="پژوهه دين" width="75" src="/UserFiles/Image/1389/1/4maghale75.jpg" /></a></p>
            </td>
          </tr>
        </tbody>
      </table>
      </td>
      <td>
      <p align="justify"><strong><font color="#808000"><a href="/default.aspx?app=ArticleManagement&page=ArticleView&catId=8&catParId=0&artId=42&Type=2"><font color="#808000">فتنة بهائي&zwnj;ها</font></a>&nbsp;&nbsp;<br />
      </font></strong>چهار مقاله در زمينة بهائيت؛ دفتر انتشارات اسلامي؛ قطع جيبي؛ 112 صفحه؛ چاپ چهارم. كتاب نه نام مؤلف دارد و نه تاريخ چاپ (به نظر مي&zwnj;رسد در سال 1388 چاپ شده است) شامل يك مقدّمه ...<br />
      <strong><a href="/default.aspx?app=ArticleManagement&page=ArticleView&catId=8&catParId=0&artId=42&Type=2"><font color="#808000">ادامه</font></a></strong><br />
      </p>
      <p align="center"><img height="18" alt="" width="300" src="/UserFiles/Image/icon/lin300.gif" /></p>
      </td>
    </tr>
  </tbody>
</table>
<table dir="rtl" cellspacing="3" cellpadding="0" width="100%" align="center" summary="" border="0">
  <tbody>
    <tr>
      <td>
      <table height="77" cellspacing="1" cellpadding="1" width="77" summary="" border="1">
        <tbody>
          <tr>
            <td>
            <p align="center"><a href="http://hamyanequds.ir/default.aspx?app=ArticleManagement&page=ArticleView&catId=3&catParId=0&artId=34&Type=2"><img height="75" alt="پژوهه دين" width="75" src="/UserFiles/Image/1389/1/derifos75.jpg" /></a></p>
            </td>
          </tr>
        </tbody>
      </table>
      </td>
      <td>
      <p align="justify"><strong><a href="http://hamyanequds.ir/default.aspx?app=ArticleManagement&page=ArticleView&catId=3&catParId=0&artId=34&Type=2"><font color="#808000">فتنة دريفوس</font></a>&nbsp;<br />
      </strong>از دو كلمه فوق مردم ما همگي هم معناي فتنه را مي&zwnj;شناسند و هم فتنة اخير را مرور كرده&zwnj;اند. امّا اغلب مردم و حتّي كساني كه اهل مطالعه و كتاب&zwnj;خواني هستند از &laquo;دريفوس&raquo; چيزي.....<br />
      <a href="http://hamyanequds.ir/default.aspx?app=ArticleManagement&page=ArticleView&catId=3&catParId=0&artId=34&Type=2"><font color="#808000"><strong>ادامه</strong><br />
      </font></a></p>
      <p align="center">&nbsp;</p>
      </td>
    </tr>
  </tbody>
</table>
</span>

<table id="Theme__ctl1_tblDocument" dir="rtl" cellspacing="0" cellpadding="0" width="100%" border="0" background="/ParsDesign/files/Backgrounds/11597.">
 <tr>
 <TD colspan="2" valign="top"></TD>
 </tr>
 <tr>
 </tr>
 <tr>
 </tr>
 <tr>
 </tr>
</table>

</td>

    <td>
    <img src="/themes/mainskins/quds/images/block_ment_06.jpg" width="3" height="1" alt=""></td>
   </tr>
   <tr>
    <td background="/themes/mainskins/quds/images/block_ment_07.jpg" width="5">
    <img src="/themes/mainskins/quds/images/block_ment_07.jpg" width="5" height="249" alt=""></td>
    <td rowspan="2" background="/themes/mainskins/quds/images/block_ment_08.jpg" width="3">
    <img src="/themes/mainskins/quds/images/block_ment_08.jpg" width="3" height="250" alt=""></td>
   </tr>
   <tr>
    <td width="5" height="1">
    <img src="/themes/mainskins/quds/images/block_ment_09.jpg" width="5" height="1" alt=""></td>
   </tr>
   <tr background="/themes/mainskins/quds/images/block_ment_11.jpg">
    <td>
    <img src="/themes/mainskins/quds/images/block_ment_10.jpg" width="5" height="4" alt=""></td>
    <td background="/themes/mainskins/quds/images/block_ment_11.jpg" height="4">
    <img src="/themes/mainskins/quds/images/block_ment_11.jpg" width="214" height="4" alt=""></td>
    <td width="2" height="4">
    <img src="/themes/mainskins/quds/images/block_ment_12.jpg" width="2" height="4" alt=""></td>
    <td>
    <img src="/themes/mainskins/quds/images/block_ment_13.jpg" width="3" height="4" alt=""></td>
   </tr>
  </table>
   
   <!-- End Bottom Block -->
   </td>
   <td width="17%">
   
   <!-- Start Menu block -->
   
   
   <table id="Table_01" width="224" height="258" border="0" cellpadding="0" cellspacing="0">
 <tr background="/themes/mainskins/quds/images/block_ment_02.jpg">
 <td>
  <img src="/themes/mainskins/quds/images/block_ment_01.jpg" width="5" height="3" alt=""></td>
 <td background="/themes/mainskins/quds/images/block_ment_02.jpg" height="3">
  <img src="/themes/mainskins/quds/images/block_ment_02.jpg" width="214" height="3" alt=""></td>
 <td colspan="2" width="5" height="3" align="right" valign=top>
  <img src="/themes/mainskins/quds/images/block_ment_03.jpg" width="5" height="3" alt=""></td>
 </tr>
 <tr>
 <td width="5" height="1">
  <img src="/themes/mainskins/quds/images/block_ment_04.jpg" width="5" height="1" alt=""></td>
 <td id="Theme_tdMenu" colspan="2" rowspan="3" bgcolor="#dae1ff" valign="top" dir="rtl"><script>var arrMenuText = new Array("&nbsp;<img src='/panel/images/MenuIcon/Icon_11597.gif'>&nbsp;صفحه اصلی&nbsp;","&nbsp;<img src='/panel/images/MenuIcon/Icon_11588.gif'>&nbsp;آشنايي با جمعيت&nbsp;","&nbsp;<img src='/panel/images/MenuIcon/Icon_11589.gif'>&nbsp;اخبار&nbsp;","&nbsp;<img src='/panel/images/MenuIcon/Icon_11590.gif'>&nbsp;گفتگو&nbsp;","&nbsp;<img src='/panel/images/MenuIcon/Icon_11591.gif'>&nbsp;مقالات تخصصي&nbsp;","&nbsp;<img src='/panel/images/MenuIcon/Icon_11592.gif'>&nbsp;بيانيه&nbsp;","&nbsp;<img src='/panel/images/MenuIcon/Icon_11609.gif'>&nbsp;همايش ها&nbsp;","&nbsp;<img src='/panel/images/MenuIcon/Icon_11618.gif'>&nbsp;معرفي كتاب&nbsp;","&nbsp;<img src='/panel/images/MenuIcon/Icon_11634.gif'>&nbsp;دوره هاي آموزشي &nbsp;","&nbsp;<img src='/panel/images/MenuIcon/Icon_11587.gif'>&nbsp;تماس با ما &nbsp;","&nbsp;<img src='/panel/images/MenuIcon/Icon_11594.gif'>&nbsp;نمايندگي هاي در سراسر كشور&nbsp;","&nbsp;<img src='/panel/images/MenuIcon/Icon_11622.gif'>&nbsp;عضويت درجمعيت&nbsp;","&nbsp;<img src='/panel/images/MenuIcon/Icon_11606.gif'>&nbsp;عضويت در خبر نامه&nbsp;","&nbsp;<img src='/panel/images/MenuIcon/Icon_11610.gif'>&nbsp;نشريه نسيم قدس&nbsp;","&nbsp;&nbsp;آگهی جدید&nbsp;");var arrMenuLink = new Array("/documents/document/0/11597/home-page.aspx","/documents/document/0/11588/portal.aspx","/default.aspx?app=news&page=news&docparid=0&docid=11589&pagenumber=1","/default.aspx?app=documents&page=link&docparid=0&docid=11590","/default.aspx?app=documents&page=link&docparid=0&docid=11591","/default.aspx?app=documents&page=link&docparid=0&docid=11592","/default.aspx?app=documents&page=link&docparid=0&docid=11609","/default.aspx?app=documents&page=link&docparid=0&docid=11618","/documents/document/0/11634/portal.aspx","/documents/document/0/11587/portal.aspx","/documents/document/0/11594/portal.aspx","/documents/document/0/11622/portal.aspx","/default.aspx?app=documents&page=link&docparid=0&docid=11606","/default.aspx?app=documents&page=link&docparid=0&docid=11610","/default.aspx?app=news&page=news&docparid=0&docid=11611&pagenumber=1");
var dir="rtl";
var bolVer=true;
</script><script src="/scripts/menu_scripts/Menu_Normal.js"></script>
<div id=divMainMenu></div>

</div><script>InitMenu();</script>
</td>

 <td>
  <img src="/themes/mainskins/quds/images/block_ment_06.jpg" width="3" height="1" alt=""></td>
 </tr>
 <tr>
 <td background="/themes/mainskins/quds/images/block_ment_07.jpg" width="5">
  <img src="/themes/mainskins/quds/images/block_ment_07.jpg" width="5" height="249" alt=""></td>
 <td rowspan="2" background="/themes/mainskins/quds/images/block_ment_08.jpg" width="3">
  <img src="/themes/mainskins/quds/images/block_ment_08.jpg" width="3" height="250" alt=""></td>
 </tr>
 <tr>
 <td width="5" height="1">
  <img src="/themes/mainskins/quds/images/block_ment_09.jpg" width="5" height="1" alt=""></td>
 </tr>
 <tr background="/themes/mainskins/quds/images/block_ment_11.jpg">
 <td>
  <img src="/themes/mainskins/quds/images/block_ment_10.jpg" width="5" height="4" alt=""></td>
 <td background="/themes/mainskins/quds/images/block_ment_11.jpg" height="4">
  <img src="/themes/mainskins/quds/images/block_ment_11.jpg" width="214" height="4" alt=""></td>
 <td width="2" height="4">
  <img src="/themes/mainskins/quds/images/block_ment_12.jpg" width="2" height="4" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/block_ment_13.jpg" width="3" height="4" alt=""></td>
 </tr>
</table>
   
   <!-- End Menu block -->
   <!-- Start block -->
   <table id="Table_01" width="224" height="103" border="0" cellpadding="0" cellspacing="0">
 <tr background="/themes/mainskins/quds/images/blk_02.jpg">
 <td colspan="2">
  <img src="/themes/mainskins/quds/images/blk_01.jpg" width="146" height="31" alt=""></td>
 <td background="/themes/mainskins/quds/images/blk_02.jpg" align="right" class="titles">رهنمود</td>
 <td>
  <img src="/themes/mainskins/quds/images/blk_03.jpg" width="7" height="31" alt=""></td>
 </tr>
 <tr>
 <td background="/themes/mainskins/quds/images/blk_04.jpg">
  <img src="/themes/mainskins/quds/images/blk_04.jpg" width="7" height="52" alt=""></td>
 <td colspan="2" bgcolor="#dae1ff" align="right" dir="rtl">
 
 <span id="tdRahnemood"></span><script>GetLocalBlock("/GetLocalBlock.aspx?app=documents&page=document&docId=11603","tdRahnemood");</script>
 </td>
 <td background="/themes/mainskins/quds/images/blk_06.jpg">
  <img src="/themes/mainskins/quds/images/blk_06.jpg" width="7" height="52" alt=""></td>
 </tr>
 <tr>
 <td>
  <img src="/themes/mainskins/quds/images/blk_07.jpg" width="7" height="8" alt=""></td>
 <td colspan="2" background="/themes/mainskins/quds/images/blk_08.jpg">
  <img src="/themes/mainskins/quds/images/blk_08.jpg" width="210" height="8" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/blk_09.jpg" width="7" height="8" alt=""></td>
 </tr>
 <tr>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="7" height="1" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="139" height="1" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="71" height="1" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="7" height="1" alt=""></td>
 </tr>
</table>
   
   <!-- End block -->
   <!-- Start block -->
   <table id="Table_01" width="224" height="103" border="0" cellpadding="0" cellspacing="0">
 <tr background="/themes/mainskins/quds/images/blk_02.jpg">
 <td colspan="2">
  <img src="/themes/mainskins/quds/images/blk_01.jpg" width="146" height="31" alt=""></td>
 <td background="/themes/mainskins/quds/images/blk_02.jpg" align="right" class="titles">حدیث هفته</td>
 <td>
  <img src="/themes/mainskins/quds/images/blk_03.jpg" width="7" height="31" alt=""></td>
 </tr>
 <tr>
 <td background="/themes/mainskins/quds/images/blk_04.jpg">
  <img src="/themes/mainskins/quds/images/blk_04.jpg" width="7" height="52" alt=""></td>
 <td colspan="2" bgcolor="#dae1ff" align="right" dir="rtl">
 <span id="tdHaddisHafteh"></span><script>GetLocalBlock("/GetLocalBlock.aspx?app=documents&page=document&docId=11602","tdHaddisHafteh");</script>
 </td>
 <td background="/themes/mainskins/quds/images/blk_06.jpg">
  <img src="/themes/mainskins/quds/images/blk_06.jpg" width="7" height="52" alt=""></td>
 </tr>
 <tr>
 <td>
  <img src="/themes/mainskins/quds/images/blk_07.jpg" width="7" height="8" alt=""></td>
 <td colspan="2" background="/themes/mainskins/quds/images/blk_08.jpg">
  <img src="/themes/mainskins/quds/images/blk_08.jpg" width="210" height="8" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/blk_09.jpg" width="7" height="8" alt=""></td>
 </tr>
 <tr>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="7" height="1" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="139" height="1" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="71" height="1" alt=""></td>
 <td>
  <img src="/themes/mainskins/quds/images/spacer.gif" width="7" height="1" alt=""></td>
 </tr>
</table>
   
   <!-- End block -->
   
   </td>
  </tr>
  </table>
 
 
 
 
 
 </td>
 <td>
  <img src="/Themes/MainSkins/quds/images/spacer.gif" width="1" height="1" alt=""></td>
 </tr>
 <tr>
 <td colspan="2" background="/Themes/MainSkins/quds/images/1_10.jpg">
  <img src="/Themes/MainSkins/quds/images/1_10.jpg" width="42" height="569" alt=""></td>
 <td>
  <img src="/Themes/MainSkins/quds/images/spacer.gif" width="1" height="569" alt=""></td>
 </tr>
 <tr background="/Themes/MainSkins/quds/images/1_12.jpg">
 <td colspan="2" width="35" height="14">
  <img src="/Themes/MainSkins/quds/images/1_11.jpg" width="35" height="14" alt=""></td>
 <td colspan="2" background="/Themes/MainSkins/quds/images/1_12.jpg">
  <img src="/Themes/MainSkins/quds/images/1_12.jpg" width="918" height="14" alt=""></td>
 <td width="5" height="14">
  <img src="/Themes/MainSkins/quds/images/1_13.jpg" width="5" height="14" alt=""></td>
 <td colspan="2" width="42" height="14">
  <img src="/Themes/MainSkins/quds/images/1_14.jpg" width="42" height="14" alt=""></td>
 <td width="1" height="14">
  <img src="/Themes/MainSkins/quds/images/spacer.gif" width="1" height="14" alt=""></td>
 </tr>
 <tr>
 <td id="Theme_tdFooter" colspan="7" bgcolor="#aac3e7" align="center"><P>کلیه حقوق مادی و معنوی این سایت متعلق به «جمعیت حامیان آزادی قدس شریف» می باشد<BR></P>
</td>

 <td>
  <img src="/Themes/MainSkins/quds/images/spacer.gif" width="1" height="16" alt=""></td>
 </tr>
 <tr>
 <td>
  <img src="/Themes/MainSkins/quds/images/spacer.gif" width="33" height="1" alt=""></td>
 <td>
  <img src="/Themes/MainSkins/quds/images/spacer.gif" width="2" height="1" alt=""></td>
 <td>
  <img src="/Themes/MainSkins/quds/images/spacer.gif" width="1" height="1" alt=""></td>
 <td>
  <img src="/Themes/MainSkins/quds/images/spacer.gif" width="917" height="1" alt=""></td>
 <td>
  <img src="/Themes/MainSkins/quds/images/spacer.gif" width="5" height="1" alt=""></td>
 <td>
  <img src="/Themes/MainSkins/quds/images/spacer.gif" width="2" height="1" alt=""></td>
 <td>
  <img src="/Themes/MainSkins/quds/images/spacer.gif" width="40" height="1" alt=""></td>
 <td></td>
 </tr>
</table>

<script>
var iVoteItemId=0;
function GetVoting(){
if (iVoteItemId==0){
alert("لطفا يك آيتم را انتخاب نماييد");

}else{
 window.open('/BlockManagement/BlockVoteItemVoting.aspx?BlockVotedIdItem='+iVoteItemId,'VotingResult','width=400,height=300,scrollbars=yes').moveTo(0,0);
 }
}
</script>
<div align="center">
 
</div>

   <SCRIPT>
            try{window.parent.Redirector(window.location.href);}catch(e){}
   </SCRIPT>
  </form>
 </div>
 <script>function nothin(){};</script>
 </body>
</HTML>

