

<HTML>
 <HEAD>
 <title>sales</title>
 <meta id="mtaKeyWords" content="موبایل تلویزیون دار،موبایل تلویزیون دار دو سیم کارت همزمان،موبایل تک سیم کارت و موبایل طرح اصلی،موبایل دو سیم کارت، دو سیم کارت همزمان،موبایل ساعت مچی ، سونی اریکسون،نوکیا، سامسونگ، موتورولا،ال جی، جی ال ایکس ،موبایل تلویزیون دار ، دوسیم کارته و ساعت مچی موبایل دار ، موبایل های مارک دار ، سنسور نشت دود و گاز،طراحي وب سايت ,مدیریت وب ,برنامه نويسي , شركت مهندسي آپادانا , آپادانا , حسين علي پناهي , برنامه نویسی وب سايت , مديريت وب سايت , سايت ساز , فروشگاه الكترونيكي , ثبت سايت , ثبت دامين , هاست , میزبانی وب , مخزن , مخازن سوخت , مخازن ضد انفجار , باك , باك ضد انفجار , شبكه توري , آلومينيوم , رنگ , تجهيزات , خطوط رنگ , شات بلاست , ساچمه فولادي , تجهيزات شات بلاست , ماشين های تمام اتوماتيــک پاک کننده سطوح فلــزی , خدمات بازرگاني , خدمات انفورماتيك , خدمات توليدي , واردات , واردات تجهيزات صنعتي , راه اندازي , نگهداري ,الكتروفـورز, تجهيزات صنعتي کــرمليـن- رکســون , فن های صنعتی , نــازل پليــــمری , طراحی و برنامه نویسی تخصصی وب سایت , ایجاد وب سایت های اینترنتی , ثبت دامنه (Domain Registration)Apadana engineering company , Web Design , Web programming , Explosion , Fire Explosion , Network , Hosting , Domain , CM , kremlin , Hawking , LPM , IMT , Apadana , Web Site Production Software , Content Management System , CMS , explostop , exco , asp.net , Network , MP4 Player,MP3 Player,Digital Photo Frame" name="keywords"></meta>
 <meta id="mtaDescription" content="موبایل تلویزیون دار،تلویزیون دار دوسیم کارت همزمان،تک سیم کارت و طرح اصلی،دوسیم کارت، دوسیم کارت همزمان،موبایل ساعت مچی ، سونی اریکسون،نوکیا، سامسونگ، موتورولا،ال جی، جی ال ایکس ، موبایل تلویزیون دار ، دوسیم کارته و موبایل ساعت مچی ، واردات،پخش و فروش انواع MP4 Player,MP3 Player,Digital Photo Frameسنسور نشت دود و گاز،,برنامه نويسي و طراحي وب سايت,مدیریت وب ,طراحي وب سايت,خدمات اينترنتي,ميزبني وب وثبت سايت,خدمات شبكه,هاست,راه اندازي تجهيزات خطوط توليد,خدمات فني,نصب و راه اندازي خطوط توليد,تجهيزات خطوط رنگ,تجهيزات شا بلاست,خدمات بازرگاني,خدمات توليدي, Web Design , Web programming , Explosion , Fire Explosion , Network , Hosting , Domain , CM , kremlin , Hawking , LPM , IMT , Apadana , Web Site Production Software , Content Management System , CMS , explostop , exco , asp.net , Network" name="description"></meta>
 <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
 <LINK href="/themes/mainskins/Blue/Styles/Panel.css" rel="stylesheet"></LINK><LINK href="/themes/mainskins/Blue/Styles/Skin.css" rel="stylesheet"></LINK><LINK href="/themes/mainskins/Blue/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>
 function Initialize(){
 var req;
 try{
  req=new ActiveXObject("Msxml2.XMLHTTP");
 }catch(e){
  try{
  req=new ActiveXObject("Microsoft.XMLHTTP");
  }
  catch(oc){
  req=null;
  }
 }
 if(!req&&typeof XMLHttpRequest!="undefined"){
  req=new XMLHttpRequest();
 }
 return req;
 }
 
 function LoadPage(url,div){
 if(url.substr(url.length-1)=="#"){
  return false;
 }
 document.getElementById(div).innerHTML = "<div align=center dir=rtl><img border=0 src='/Panel/Images/ProgressBar.gif'> <BR> Loading...</div>";
 var req=Initialize();
 if(req!= null){
  req.onreadystatechange = function(){
   Process(div,req);
  };
  req.open("GET", url, true);
  req.setRequestHeader("Content-Type","application/x-www-form-urlencoded; charset=UTF-8");
  req.send(null);
 }
 }
 
 function Process(div,req){
 if(req.readyState == 4){
  if (req.status == 200){
  if(req.responseText==""){
   HideDiv(div);
  }else{
   ShowDiv(div);
   document.getElementById(div).innerHTML = req.responseText.replace("<form","<form1");
  }
  }else{
  document.getElementById(div).innerHTML= "Server is too busy:<br>" + req.statusText;
  }
 } 
 }
 
 function ShowDiv(divid){if (document.layers) document.layers[divid].visibility="show";else document.getElementById(divid).style.visibility="visible";}function HideDiv(divid){if (document.layers){document.layers[divid].visibility="hide";}else{document.getElementById(divid).style.visibility="hidden";}}function BodyLoad(div){HideDiv(div);document.form1.keyword.focus();}function PostPage(url,params,div){if(url.substr(url.length-1)=="#"){return false;}document.getElementById(div).innerHTML = "<div align=center dir=rtl><img border=0 src='/Panel/Images/ProgressBar.gif'> <BR>Loading...</div>";var req=Initialize();if(req!= null){req.onreadystatechange = function(){req=Process(div,req);};req.open("POST", url, true);req.setRequestHeader("Content-Type","application/x-www-form-urlencoded; charset=UTF-8");req.send(params);}}


 function GetLocalBlock(url,id){
 if(url.indexOf("=ShowHit")){
   var clocktime = new Date();
   var utchours = clocktime.getUTCHours();
   var utcminutes = clocktime.getUTCMinutes();
   var utcseconds = clocktime.getUTCSeconds();
   var utcyear = clocktime.getUTCFullYear();
   var utcmonth = clocktime.getUTCMonth()+1;
   var utcday = clocktime.getUTCDate();
   var utctime = utcyear+''+utcmonth+''+utcday;
    utctime += utchours+''+utcminutes+''+utcseconds;
  url = url+"&antiCache="+utctime;
 }

 if(url.substr(url.length-1)=="#"){
  return false;
 }
 document.getElementById(id).innerHTML = "<div align=center dir=ltr><img border=0 src='/Panel/Images/ProgressBar.gif'> <BR> Loading...</div>";
 var req=Initialize();
 if(req!= null){
  req.onreadystatechange = function(){
   ProcessBlock(req,id);
  };
  req.open("GET", url, true);
  req.setRequestHeader("Content-Type","application/x-www-form-urlencoded; charset=UTF-8");
  req.send(null);
 }else{alert(req);}
 }
 
 function ProcessBlock(req,id){
 if(req.readyState == 4){
  if (req.status == 200){
  if(req.responseText==""){
   //HideDiv(div);
  }else{
   document.getElementById(id).innerHTML = req.responseText;
  }
  }else{
  document.getElementById(id).innerHTML = "Server is too busy:<br>" + req.statusText;
  }
 } 
 }

function ShowDiv(divid)
{
  if (document.layers) document.layers[divid].visibility="show";
  else document.getElementById(divid).style.visibility="visible";
}

function HideDiv(divid)
{
  if(document.layers){
 document.layers[divid].visibility="hide";
  }else{
 document.getElementById(divid).style.visibility="hidden";
  }
}

function BodyLoad(div)
{
  HideDiv(div);
  document.form1.keyword.focus();
}

function ShowDivPosition(divId)
 {
   var div = document.getElementById(divId);
   var divContentTable = document.getElementById('divDefinitionTable');
   document.getElementById('pContent').innerHTML = div.innerHTML;
   divContentTable.style.display = "block";
   divContentTable.style.top = event.clientY + document.body.scrollTop+10;
   if((divContentTable.style.pixelLeft+300)>850){
 divContentTable.style.left = event.clientX + document.body.scrollLeft - 300;
   }else{
 divContentTable.style.left = event.clientX + document.body.scrollLeft+10;
   }
 } 
 function HideDivPosition(divId)
 {
   var div = document.getElementById('divDefinitionTable');
   div.style.display = "none";
 } 
 
 var hex=0;

function FadeMenuIn(obj){ 
 if(hex<100) {
 hex+=6;
 document.getElementById(obj).style.filter = "alpha(opacity="+hex+", finishopacity=30, style=4, StartX=100, FinishX=0, StartY=0, FinishY=0)";
 setTimeout("FadeMenuIn('"+obj+"')",1);
 }else{
 hex=100; //reset hex value
 }
}

function FadeMenuOut(obj){
 clearTimeout("FadeMenuIn('"+obj+"')");
 document.getElementById(obj).style.filter = "alpha(opacity=100, finishopacity=30, style=4, StartX=100, FinishX=0, StartY=0, FinishY=0)";
 hex=100;
}
  </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>
 
 <script language="javascript" src="/scripts/public.js" type="text/javascript"></script>
 <div id="jhfjkefkjfnkjsdf" align="center">
  <form name="frmDefault" method="post" action="/default.aspx?page=ProductCategoriesViewList&app=ProductsManagement&catId=535&ItmNameId=No" id="frmDefault">
<input type="hidden" name="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATE_KEY" value="VIEWSTATE_20100908_3fc3a8fe-7d07-44f0-9775-a006aaaa5029_634195165871061250" />
<input type="hidden" name="__VIEWSTATE" value="" />
<script language="javascript" type="text/javascript">
<!--
 function __doPostBack(eventTarget, eventArgument) {
 var theform;
 if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {
  theform = document.frmDefault;
 }
 else {
  theform = document.forms["frmDefault"];
 }
 theform.__EVENTTARGET.value = eventTarget.split("$").join(":");
 theform.__EVENTARGUMENT.value = eventArgument;
 theform.submit();
 }
// -->
</script>

  
  <!-- 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 -->

<table align="center" width="754" border="0" cellpadding="0" cellspacing="0">
 <!--DWLayoutTable-->
 <tr>
  <td width="100%" height="241" valign="top" align="right"><table width="100%" border="0" cellpadding="0" cellspacing="0">
   <!--DWLayoutTable-->
   <tr>
    <td width="100%" height="47" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
     <!--DWLayoutTable-->
     <tr>
      <td width="30" height="48" valign="top"><img src="/themes/mainskins/Blue/images/bb_01.gif"></td>
      <td id="Theme_tdSearch" width="100%" valign="Middle" background="/themes/mainskins/Blue/images/bb_02.gif" align="right"><!--DWLayoutEmptyCell-->&nbsp;
<meta http-equiv="Content-Language" content="fa">
<table width="0%" border="0" cellspacing="0" cellpadding="2">
 <tr>
  <td valign="middle"></td>
  <td valign="middle"><input type="submit" name="Theme:_ctl5:btnSearch" value="جستجو" onclick="javascript:location.href='/default.aspx?page=search&app=search&srch='+document.getElementById('Theme__ctl5_txtSearch').value;return false;if (typeof(Page_ClientValidate) == 'function') Page_ClientValidate(); " language="javascript" id="Theme__ctl5_btnSearch" class="Button" style="width:51px;" /></td>
  <td valign="middle"><input name="Theme:_ctl5:txtSearch" id="Theme__ctl5_txtSearch" type="text" class="inputt" size="12" style="WIDTH: 80px" onkeydown="if(event.which || event.keyCode){if ((event.which == 13) || (event.keyCode == 13)) {document.getElementById('Theme__ctl5_btnSearch').click();return false;}} else {return true}; " /></td>
 </tr>
</table>
</td>

      <td width="22" valign="top"><img src="/themes/mainskins/Blue/images/bb_03.gif"></td>
     </tr>
    </table></td>
   </tr>
   <tr>
    <td height="192" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
     <!--DWLayoutTable-->
     <tr>
  <td width="30"><img src="/themes/mainskins/Blue/images/header-left.gif" width="41" height="192"></td>
      <td height="192" align="right" valign="top" background="/themes/mainskins/Blue/images/header-back.gif"><img src="/themes/mainskins/Blue/images/header-right.gif" width="512" height="192"></td>
      <td id="Theme_tdLogin" width="201" valign="middle" background="/themes/mainskins/Blue/images/bb_05.gif" align="center"><!--DWLayoutEmptyCell-->&nbsp;<table id="Theme__ctl1_tblLogin" class="Table" dir="rtl" cellspacing="2" cellpadding="0" align="center" border="0">
 <tr>
 <TD colspan="2"><input name="Theme:_ctl1:txtUName" type="text" value="نام کاربري" id="Theme__ctl1_txtUName" class="TextBox" OnFocus="javascript:DeleteDefaultText(this,'نام کاربري');" OnBlur="javascript:InsertDefaultText(this,'نام کاربري');" style="width:100px;" /></TD>
 </tr>
 <tr>
 <TD colspan="2"><input name="Theme:_ctl1:txtUPass" type="password" id="Theme__ctl1_txtUPass" class="TextBox" style="width:100px;" /></TD>
 </tr>
 <tr>
 <TD align="center" colspan="3">
 </TD>
 </tr>
 <tr>
 <TD align="center" colspan="2" valign="bottom">
  <input type="submit" name="Theme:_ctl1:butOk" value="ورود" id="Theme__ctl1_butOk" class="button" />&nbsp;</TD>
 </tr>
 <tr>
 <TD align="center" colspan="2">
  <span class="CheckBox"><input id="Theme__ctl1_chkAutoLogin" type="checkbox" name="Theme:_ctl1:chkAutoLogin" /><label for="Theme__ctl1_chkAutoLogin">یاد آوری کلمه عبور</label></span>&nbsp;&nbsp;</TD>
 </tr>
 <tr>
 <TD align="center" colspan="2">
  <a id="Theme__ctl1_lnkSendPassword" class="NormalLink" href="javascript:{if (typeof(Page_ClientValidate) != 'function' || Page_ClientValidate()) __doPostBack('Theme$_ctl1$lnkSendPassword','')} ">فراموشي کلمه عبور</a>&nbsp;</TD>
 </tr>
</table>


<script>
noCache();
</script>
</td>

     </tr>
    </table></td>
   </tr>
   <tr>
    <td height="2"></td>
   </tr>
  </table></td>
 </tr>
 <tr>
  <td height="100%" valign="top"><table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
   <!--DWLayoutTable-->
   <tr>
    <td width="600" height="100%" valign="top"><table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
     <!--DWLayoutTable-->
     <tr>
      <td width="135" height="33" valign="top"><img src="/themes/mainskins/Blue/images/bb_06.gif"></td>
      <td id="Theme_tdMarquee" width="100%" valign="middle" background="/themes/mainskins/Blue/images/bb_07.gif" align="center"><marquee direction="right" width="100%" Height="10" OnMouseOver='this.stop();' OnMouseOut='this.start();' ></marquee></td>

      <td width="33" valign="top"><img src="/themes/mainskins/Blue/images/bb_08.gif"></td>
     </tr>
     <tr>
      <td height="100%" colspan="3" valign="top"><table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
       <!--DWLayoutTable-->
       <tr>
        <td id="Theme_tdMain" height="100%" valign="top" bgcolor="#B7D7FE" align="right">
         
         
      

<TABLE>
 <TR>
 <TD align="center"><span id="Theme__ctl3_lblErrMessage"></span></TD>
 </TR>
</TABLE>



<div align="center">
<table borderColor="#d5d3d6" cellSpacing="0" cellPadding="0" width="100%"
 border="1">
 <TBODY>
 <tr align="right" bgColor="#d5d3d6">
  <td id="Theme__ctl3_tdTitle" height="20"><span id="Theme__ctl3_lblTitle" class="NormalText">ليست اجناس </span></td>

 </tr>
 <tr>
  <td>
  <table width="100%">
   <tr>
   <td align="left">
    <a id="Theme__ctl3_Linkbutton1" href="javascript:{if (typeof(Page_ClientValidate) != 'function' || Page_ClientValidate()) __doPostBack('Theme$_ctl3$Linkbutton1','')} "><< بازگشت</a></td>
   <td align="right"></td>
   </tr>
  </table>
  </td>
 </tr>
 <tr>
  <td><table id="Theme__ctl3_tblSortPage" height="0" cellspacing="0" cellpadding="1" width="100%" align="center">
 <tr valign="middle" align="center" bgcolor="#d5d3d6" width="90%">
 <td id="Theme__ctl3_tdPageCount" width="30%"><select name="Theme:_ctl3:ddlCPage" onchange="__doPostBack('Theme$_ctl3$ddlCPage','')" language="javascript" id="Theme__ctl3_ddlCPage" style="font-family:Tahoma;font-size:11px;width:51px;">
  <option value="10">10</option>
  <option value="20">20</option>
  <option value="30">30</option>
  <option value="40">40</option>
  <option value="50">50</option>

 </select>
   <p><span id="Theme__ctl3_lblViewCount" class="NormalText">تعداد نمايش در هر صفحه</span></td>
 <td id="Theme__ctl3_tdSort" width="60%"><select name="Theme:_ctl3:ddlSort" onchange="__doPostBack('Theme$_ctl3$ddlSort','')" language="javascript" id="Theme__ctl3_ddlSort" style="font-family:Tahoma;font-size:11px;width:170px;">
  <option value="4">نام بصورت حروف كوچك تا حروف بزرگ</option>
  <option value="3">نام بصورت حروف بزرگ تا حروف كوچك</option>
  <option value="1">قيمت بيشتر به قيمت كمتر</option>
  <option value="2">قيمت كمتر به قيمت بيشتر</option>
  <option selected="selected" value="3">جدید تر به قدیمی تر</option>
  <option value="4">قدیمی تر به جدید تر</option>

 </select>
   <p><span id="Theme__ctl3_lblSort" class="NormalText">مرتب شود 
     بر اساس </span></td>
 </tr>
</table>

  </td>
 </tr>
 <tr align="center">
  <td align="center">
  <table cellpadding="5" cellspacing="5" border="0" width="90%" align="center">
   <tr align="right" valign="top">
    <td width="20%" align="center">
    <br>
    <br>
    <img border=0 src=/ParsDesign/files/Shop/Items/S135.jpg style="cursor:hand;" div="تصوير بزرگ" onclick="javascript:window.open('ParsDesign/Files/Shop/Items/L135.jpg','ItemVoting','height=400,width=500,scrollbars=yes,resizable=yes').moveTo(0,0);return false;" > &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>
    <img border=0 src=/panel/images/Zoom.gif style="cursor:hand;" div="تصوير بزرگ" onclick="javascript:window.open('ParsDesign/Files/Shop/Items/L135.jpg','ItemVoting','height=400,width=500,scrollbars=yes,resizable=yes').moveTo(0,0);return false;" > 
    </td>
    <td width="80%" align="right" dir="rtl">
    <br>
    <br>
    <b>
     V3i
    </b>
    <br>
    <br>
    <p>
     سيستم عامل نوع: ندارد <br>مشخصات ظاهري وزن: 100 گرم <br>سايز (میلی متر) : طول : 98 عرض : 53 ضخامت : 13.9 <br>مشخصات صفحه نمايش نوع: TFT با قابلیت نمایش 262144 رنگ وصفحه نمایش خارجی CSTN با قابلیت نمایش 65536 رنگ <br>مشخصات دوربين نوع: 1.23 پیکسل  <br>ابعاد عكس : 960 × 1280 پیکسل <br>قابليت فيلمبرداري: دارد <br>قابليت پخش: MP3 <br>بلوتوث: دارد نسخه ی1.2 <br>تايپ هوشمند T9 : دارد <br>ويبره : دارد <br>آيفون : دارد <br>منشي تلفني : ندارد <br>سيستم ضبط صدا: دارد <br>
    </p>
    
    <br>
    
    <img border="0" src="Panel\Images\price.gif"> <font style="font:11px" face="tahoma" dir="rtl">
     قيمت :</font>&nbsp;
    <span id="Theme__ctl3_rptShopItems__ctl1_Label2">1,680,000ريال</span>
    <br>
    <img border="0" src="Panel\Images\price.gif"> <font style="font:11px" face="tahoma"> قيمت 
     قبلي :</font>&nbsp;
    <span id="Theme__ctl3_rptShopItems__ctl1_Label5" style="color:#FF3333;text-decoration: line-through;"></span>
    <br>
    
    <p id="Theme__ctl3_rptShopItems__ctl1_tdDetailes">
     
    </p>
    <p id="Theme__ctl3_rptShopItems__ctl1_tdComment">
     <img src="Panel\Images\vote.gif">
     <img border=0 src=ProductsManagement/images/stars5.gif style="cursor:hand;" div="نظر سنجي" onclick="javascript:window.open('ProductsManagement/ProductVote.aspx?itmId=135 &rating=5','ItemVoting','height=350,width=330,scrollbars=no').moveTo(0,0);return false;" > 
     (
     <span id="Theme__ctl3_rptShopItems__ctl1_Label3">1</span>&nbsp;راي)
     <br>
     <img src="Panel\Images\information.gif"><a href='/default.aspx?page=ProductViewDetail&app=ProductsManagement&Id=135&catParId=&catId=535&TopicId=2&ItmNameId=No' >
     اطلاعات بيشتر </a>
     <br>
     <img border="0" src="Panel\Images\Compare.gif"><a href='/default.aspx?page=ShopCompareList&app=ProductsManagement&Id=135&catId=535' >
     مقايسه</a>
     <br>
     <img border="0" src="Panel\Images\Compare.gif"><a href='/default.aspx?page=ShopComment&app=ProductsManagement&itmId=135' >
     نظرات بازديدکنندگان</a>
     
     <br>
     <img border="0" src="Panel\Images\information.gif"><a href='/ParsDesign/Files/Shop/files/135' >
      فایل الحاقی</a>
     </asp:Literal>
    </p><p id="Theme__ctl3_rptShopItems__ctl1_P1"><img border="0" src="[R]file:///C:/Documents%20and%20Settings/Apadana/Desktop/Panel\Images\Compare.gif"><a href='/default.aspx?page=Form&app=Forms&docId=11762&docParId=0' >سفارش</a></p></td></tr>
   <tr align="right" valign="top">
    <td width="20%" align="center">
    <br>
    <br>
    <img border=0 src=/ParsDesign/files/Shop/Items/S134.jpg style="cursor:hand;" div="تصوير بزرگ" onclick="javascript:window.open('ParsDesign/Files/Shop/Items/L134.jpg','ItemVoting','height=400,width=500,scrollbars=yes,resizable=yes').moveTo(0,0);return false;" > &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>
    <img border=0 src=/panel/images/Zoom.gif style="cursor:hand;" div="تصوير بزرگ" onclick="javascript:window.open('ParsDesign/Files/Shop/Items/L134.jpg','ItemVoting','height=400,width=500,scrollbars=yes,resizable=yes').moveTo(0,0);return false;" > 
    </td>
    <td width="80%" align="right" dir="rtl">
    <br>
    <br>
    <b>
     W208
    </b>
    <br>
    <br>
    <p>
     سيستم عامل نوع: ندارد <br>مشخصات ظاهري وزن: 78 گرم <br>سايز (میلی متر) : طول : 108 عرض : 44 ضخامت : 14.9 <br>رنگ بندي گوشي : نقره ای - قرمز <br>مشخصات صفحه نمايش نوع: TFT با قابلیت نمایش 65536 رنگ <br>ابعاد: 128 × 128 پیکسل <br>حالت اسكرين سيور: دارد <br>تصوير زمينه: دارد <br>مشخصات دوربين نوع: ندارد <br>قابليت بزرگنمايي: ندارد <br>ابعاد عكس : ندارد <br>قابليت فيلمبرداري: ندارد <br>مشخصات صداي زنگ نوع: پلی فونیک 32 کاناله  <br>بازي نام بازي : دارای 3 بازی <br>messaging : SMS <br>
    </p>
    
    <br>
    
    <img border="0" src="Panel\Images\price.gif"> <font style="font:11px" face="tahoma" dir="rtl">
     قيمت :</font>&nbsp;
    <span id="Theme__ctl3_rptShopItems__ctl2_Label2">620,000ريال</span>
    <br>
    <img border="0" src="Panel\Images\price.gif"> <font style="font:11px" face="tahoma"> قيمت 
     قبلي :</font>&nbsp;
    <span id="Theme__ctl3_rptShopItems__ctl2_Label5" style="color:#FF3333;text-decoration: line-through;"></span>
    <br>
    
    <p id="Theme__ctl3_rptShopItems__ctl2_tdDetailes">
     
    </p>
    <p id="Theme__ctl3_rptShopItems__ctl2_tdComment">
     <img src="Panel\Images\vote.gif">
     <img border=0 src=ProductsManagement/images/stars0.gif style="cursor:hand;" div="نظر سنجي" onclick="javascript:window.open('ProductsManagement/ProductVote.aspx?itmId=134 &rating=0','ItemVoting','height=350,width=330,scrollbars=no').moveTo(0,0);return false;" > 
     (
     <span id="Theme__ctl3_rptShopItems__ctl2_Label3">0</span>&nbsp;راي)
     <br>
     <img src="Panel\Images\information.gif"><a href='/default.aspx?page=ProductViewDetail&app=ProductsManagement&Id=134&catParId=&catId=535&TopicId=2&ItmNameId=No' >
     اطلاعات بيشتر </a>
     <br>
     <img border="0" src="Panel\Images\Compare.gif"><a href='/default.aspx?page=ShopCompareList&app=ProductsManagement&Id=134&catId=535' >
     مقايسه</a>
     <br>
     <img border="0" src="Panel\Images\Compare.gif"><a href='/default.aspx?page=ShopComment&app=ProductsManagement&itmId=134' >
     نظرات بازديدکنندگان</a>
     
     <br>
     <img border="0" src="Panel\Images\information.gif"><a href='/ParsDesign/Files/Shop/files/134' >
      فایل الحاقی</a>
     </asp:Literal>
    </p><p id="Theme__ctl3_rptShopItems__ctl2_P1"><img border="0" src="[R]file:///C:/Documents%20and%20Settings/Apadana/Desktop/Panel\Images\Compare.gif"><a href='/default.aspx?page=Form&app=Forms&docId=11762&docParId=0' >سفارش</a></p></td></tr></table>
<TABLE class="BodyTextTahoma" id="Table3" dir="rtl" style="HEIGHT: 44px" cellSpacing="1"
 cellPadding="1" width="100%" border="0">
 <TR id="TdDown">
 <TD dir="rtl" align="center">
  <div id="Theme__ctl3_divPage" dir="ltr" align="center"><br>
  &nbsp;&nbsp;<a id="Theme__ctl3_lnkPageNumber" style="font-family:Tahoma;"> <b>1</b> </a>&nbsp;&nbsp;
  <br>
  <span id="Theme__ctl3_lblCurrentPage" style="font-family:Tahoma;">صفحه 1 از 1 صفحه</span></div>
 </TD>
 </TR>
</TABLE>
<br>
<br>
<br>
</TD></TR></TBODY></TABLE>
</div>

</td>

       </tr>
      </table></td>
      </tr>
     <tr>
      <td height="24" valign="top"><img src="/themes/mainskins/Blue/images/bb_35.gif"></td>
      <td valign="top" background="/themes/mainskins/Blue/images/bb_36.gif"><!--DWLayoutEmptyCell-->&nbsp; </td>
      <td valign="top"><img src="/themes/mainskins/Blue/images/bb_36.gif"></td>
     </tr>
   <tr>
    <td colspan="3" height="44" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
     <!--DWLayoutTable-->
     <tr>
      <td width="15" height="44" valign="top"><img src="/themes/mainskins/Blue/images/bb_41.gif"></td>
      <td id="Theme_tdFooter" width="100%" valign="middle" background="/themes/mainskins/Blue/images/bb_43.gif" align="right" dir="rtl"><!--DWLayoutEmptyCell-->&nbsp;
</td>

     </tr>
    </table></td>
    </tr>
    </table></td>
    <td height="100%" rowspan="1" valign="top"><table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
     <!--DWLayoutTable-->
     <tr>
      <td width="19" height="70" valign="top" background="/themes/mainskins/Blue/images/bb_10-back.gif"><img src="/themes/mainskins/Blue/images/bb_09.gif"></td>
      <td width="100%" valign="top" align="right" background="/themes/mainskins/Blue/images/bb_10-back.gif"><img src="/themes/mainskins/Blue/images/bb_10.gif"></td>
      <td width="21" valign="top" align="right"><img src="/themes/mainskins/Blue/images/bb_11.gif"></td>
     </tr>
     <tr>
      <td height="100%" width="100%" colspan="3" valign="top"><table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
       <!--DWLayoutTable-->
       <tr>
        <td width="13" height="214" valign="top" background="/themes/mainskins/Blue/images/bb_13-back.gif"><img src="/themes/mainskins/Blue/images/bb_13-back.gif"></td>
        <td valign="top" bgcolor="#E0EDFE" >
   <table width="100%" height="100%" cellpadding="0" cellspacing="0" border="0" bgcolor="#E0EDFE">
   <tr> <td id="Theme_tdMenu" width="100%" height="100" valign="top" align="center"><script>var arrMenuText = new Array("&nbsp;&nbsp;در دست تغییرات&nbsp;");var arrMenuLink = new Array("/documents/document/0/12999/sales.aspx");
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>
</tr>
   <tr> <td width="100%" valign="top" background="/themes/mainskins/Blue/images/bb_45.gif"></tr>
  <tr><td id="Theme_tdVoting" width="100%" height="100" align="center" valign="top">
<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">
 <span id="Theme__ctl8_lblVoteText">نظر شما در مورد سايت چيست؟</span>
 <br>
 <br>
 <table width=95% align=center>
  <tr align=center OnClick='javascript:iVoteItemId=118;'>
    <td align=right>
      خوب
    </td>
    <td align=left>
      <input type=radio id=rbVote name=rbVote OnClick='javascript:iVoteItemId=118;' value=118>
    </td>
  </tr>
  <tr align=center OnClick='javascript:iVoteItemId=119;'>
    <td align=right>
      متوسط
    </td>
    <td align=left>
      <input type=radio id=rbVote name=rbVote OnClick='javascript:iVoteItemId=119;' value=119>
    </td>
  </tr>
  <tr align=center OnClick='javascript:iVoteItemId=120;'>
    <td align=right>
      بد
    </td>
    <td align=left>
      <input type=radio id=rbVote name=rbVote OnClick='javascript:iVoteItemId=120;' value=120>
    </td>
  </tr>
  <tr>
    <td colspan=2>&nbsp;</td>
  </tr>
  <tr align=center>
    <td colspan=2><input type=button class=button value='ثبت نظر' onclick='javascript:GetVoting();return false;'></td>
  </tr>
</table>

</div>
</td>
</tr>
  <tr> <td width="100%" valign="top" background="/themes/mainskins/Blue/images/bb_45.gif"></tr>
  <tr><td id="Theme_tdDateTime" width="100%" height="100" align="center" valign="top">
<table id="Theme__ctl7__ctl0_Table1" cellspacing="0" cellpadding="2" border="0" border="0" style="height:200px;width:90%;border-collapse:collapse;">
 <tr>
 <td>
  <P align="center"><FONT>
   <a id="Theme__ctl7__ctl0_next_month" href="javascript:{if (typeof(Page_ClientValidate) != 'function' || Page_ClientValidate()) __doPostBack('Theme$_ctl7$_ctl0$next_month','')} " style="color:Black;"><</a>
  </FONT>
  </P>
 </td><td colspan="5">
  <P align="center">
  <span id="Theme__ctl7__ctl0_TopTitle" class="lighttitles">1389 شهريور</span>
  </P>
 </td><td>
  <P align="center"><FONT>
   <a id="Theme__ctl7__ctl0_prev_month" href="javascript:{if (typeof(Page_ClientValidate) != 'function' || Page_ClientValidate()) __doPostBack('Theme$_ctl7$_ctl0$prev_month','')} " style="color:Black;">></a>
  </FONT>
  </P>
 </td>
 </tr><tr class="titles">
 <td style="WIDTH:14%">
  <P align="center">ج</P>
 </td><td style="WIDTH:14%">
  <P align="center">پ</P>
 </td><td style="WIDTH:14%">
  <P align="center">چ</P>
 </td><td style="WIDTH:14%">
  <P align="center">س</P>
 </td><td style="WIDTH:14%">
  <P align="center">د</P>
 </td><td style="WIDTH:14%">
  <P align="center">ي</P>
 </td><td style="WIDTH:14%">
  <P align="center">ش</P>
 </td>
 </tr><tr>
 <td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton7" title="روز داروسازي - روز بزرگداشت محمدبن زکرياي رازي" class="titles" style="font-weight:bold;height:15px;width:22px;">5</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton6" title="روز کارمند" class="titles" style="font-weight:bold;height:15px;width:22px;">4</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton5" title="اشغال ايران به توسط متفقين و فرار رضاخوان" class="titles" style="font-weight:bold;height:15px;width:22px;">3</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton4" title="آغاز هفته دولت" class="titles" style="font-weight:bold;height:15px;width:22px;">2</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton3" title="روز پزشک - روز بزرگداشت ابوعلي سينا" class="titles" style="font-weight:bold;height:15px;width:22px;">1</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton2" class="titles_prev" style="filter: alpha(opacity=20);"></span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton1" title="روز بزرگداشت علامه مجلسي - روز جهاني مسجد- حمله به مسجد گوهرشاد و کشتار مردم به توسط رضاخان" class="titles_prev" style="font-weight:bold;height:15px;width:22px;filter: alpha(opacity=20);"></span>
  </P>
 </td>
 </tr><tr>
 <td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton14" class="titles">12</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton13" title="روز صنعت چاپ" class="titles" style="font-weight:bold;height:15px;width:22px;">11</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton12" title="روز بانکداري اسلامي (سالروز تصويب قانون عمليات بانکي بدون ربا)ـ" class="titles" style="font-weight:bold;height:15px;width:22px;">10</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton11" class="titles">9</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton10" title="روز مبارزه با تروريسم (انفجار دفتر نخست وزيري به دست منافقين و شهادت مظلومانه شهيدان رجايي و باهنر)ـ" class="titles" style="font-weight:bold;height:15px;width:22px;">8</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton9" class="titles">7</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton8" class="titles">6</span>
  </P>
 </td>
 </tr><tr>
 <td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton21" title="وفات آيت ا... سيد محمود طالقاني اولين امام جمعه تهران" class="titles" style="font-weight:bold;height:15px;width:22px;">19</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton20" title="روز جانباز" class="titles" style="font-weight:bold;height:15px;width:22px;">18</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton19" title="روز پاسدار - قيام 17 شهريور - کشتار جمعي از مردم به دست ماموران ستم شاهي پهلوي" class="titles" style="background-color:#C0C0FA;font-weight:bold;height:15px;width:22px;">17</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton18" class="titles">16</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton17" class="titles">15</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton16" title="شهادت آيت ا... قدوسي و سرتيب وحيد دستجردي" class="titles" style="font-weight:bold;height:15px;width:22px;">14</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton15" title="روز تعاون - روز بزرگداشت ابوريحان بيروني" class="titles" style="font-weight:bold;height:15px;width:22px;">13</span>
  </P>
 </td>
 </tr><tr>
 <td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton28" class="titles">26</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton27" title="روز جوان" class="titles" style="font-weight:bold;height:15px;width:22px;">25</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton26" class="titles">24</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton25" class="titles">23</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton24" class="titles">22</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton23" title="روز سينما" class="titles" style="font-weight:bold;height:15px;width:22px;">21</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton22" title="شهادت دومين شهيد محراب آيت ا... مدني به دست منافقين" class="titles" style="font-weight:bold;height:15px;width:22px;">20</span>
  </P>
 </td>
 </tr><tr>
 <td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton35" class="titles_next" style="filter: alpha(opacity=20);"></span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton34" class="titles_next" style="filter: alpha(opacity=20);"></span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton33" title="آغاز جنگ تحميلي - آغاز هفته دفاع مقدس" class="titles" style="font-weight:bold;height:15px;width:22px;">31</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton32" title="روز گفتگوي تمدنها" class="titles" style="font-weight:bold;height:15px;width:22px;">30</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton31" title="روز جهاني مستضعفين" class="titles" style="font-weight:bold;height:15px;width:22px;">29</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton30" class="titles" style="font-weight:bold;height:15px;width:22px;">28</span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton29" title="روز شعر و ادب فارسي - روز بزرگداشت استاد سيد محمد حسين شهريار" class="titles" style="font-weight:bold;height:15px;width:22px;">27</span>
  </P>
 </td>
 </tr><tr>
 <td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton42" title="روز همبستگي و همدردي با کودکان و نوجوانان فلسطيني - روز جهاني سالمندان" class="titles_next" style="font-weight:bold;height:15px;width:22px;filter: alpha(opacity=20);"></span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton41" title="شهادت سرداران اسلام: فلاحي، فکوري، نامجو، کلاهدوز و جهان آرا - روز بزرگداشت مولوي - روز ناشنوايان - روز جهاني دريانوردي" class="titles_next" style="font-weight:bold;height:15px;width:22px;filter: alpha(opacity=20);"></span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton40" title="روز آتش نشاني و ايمني" class="titles_next" style="font-weight:bold;height:15px;width:22px;filter: alpha(opacity=20);"></span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton39" class="titles_next" style="filter: alpha(opacity=20);"></span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton38" title="شکست حصر آبادان در عمليات ثامن الائمه (ع) - روز جهاني جهانگردي" class="titles_next" style="font-weight:bold;height:15px;width:22px;filter: alpha(opacity=20);"></span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton37" class="titles_next" style="filter: alpha(opacity=20);"></span>
  </P>
 </td><td>
  <P align="center">
  <span id="Theme__ctl7__ctl0_CalButton36" class="titles_next" style="filter: alpha(opacity=20);"></span>
  </P>
 </td>
 </tr><tr>
 <td colspan="8">
  <P align="center">
  <span id="Theme__ctl7__ctl0_lblMonasebat" class="monasebat">روز پاسدار - قيام 17 شهريور - کشتار جمعي از مردم به دست ماموران ستم شاهي پهلوي</span>
  </P>
 </td>
 </tr>
</table>

<br>
<script language="JavaScript">
<!--
// set the function

var thehours=4;
var themins=23;
var thesecs=2;

function theclock()
{
var DateNow=new Date();

thesecs++;
if(thesecs>59){
 themins++;
 thesecs=0;
}

if(themins>59){
 thehours++;
 themins=0;
}

if(thehours>23){
thehours=0;
}


var corrected_sixty=new Array(24)
corrected_sixty[0]="00";
corrected_sixty[1]="01";
corrected_sixty[2]="02";
corrected_sixty[3]="03";
corrected_sixty[4]="04";
corrected_sixty[5]="05";
corrected_sixty[6]="06";
corrected_sixty[7]="07";
corrected_sixty[8]="08";
corrected_sixty[9]="09";
corrected_sixty[10]="10";
corrected_sixty[11]="11";
corrected_sixty[12]="12";
corrected_sixty[13]="13";
corrected_sixty[14]="14";
corrected_sixty[15]="15";
corrected_sixty[16]="16";
corrected_sixty[17]="17";
corrected_sixty[18]="18";
corrected_sixty[19]="19";
corrected_sixty[20]="20";
corrected_sixty[21]="21";
corrected_sixty[22]="22";
corrected_sixty[23]="23";
corrected_sixty[24]="24";
corrected_sixty[25]="25";
corrected_sixty[26]="26";
corrected_sixty[27]="27";
corrected_sixty[28]="28";
corrected_sixty[29]="29";
corrected_sixty[30]="30";
corrected_sixty[31]="31";
corrected_sixty[32]="32";
corrected_sixty[33]="33";
corrected_sixty[34]="34";
corrected_sixty[35]="35";
corrected_sixty[36]="36";
corrected_sixty[37]="37";
corrected_sixty[38]="38";
corrected_sixty[39]="39";
corrected_sixty[40]="40";
corrected_sixty[41]="41";
corrected_sixty[42]="42";
corrected_sixty[43]="43";
corrected_sixty[44]="44";
corrected_sixty[45]="45";
corrected_sixty[46]="46";
corrected_sixty[47]="47";
corrected_sixty[48]="48";
corrected_sixty[49]="49";
corrected_sixty[50]="50";
corrected_sixty[51]="51";
corrected_sixty[52]="52";
corrected_sixty[53]="53";
corrected_sixty[54]="54";
corrected_sixty[55]="55";
corrected_sixty[56]="56";
corrected_sixty[57]="57";
corrected_sixty[58]="58";
corrected_sixty[59]="59";




// correct the hours

var corrected_hours=new Array(24)
corrected_hours[0]="00";
corrected_hours[1]="01";
corrected_hours[2]="02";
corrected_hours[3]="03";
corrected_hours[4]="04";
corrected_hours[5]="05";
corrected_hours[6]="06";
corrected_hours[7]="07";
corrected_hours[8]="08";
corrected_hours[9]="09";
corrected_hours[10]="10";
corrected_hours[11]="11";
corrected_hours[12]="12";
corrected_hours[13]="13";
corrected_hours[14]="14";
corrected_hours[15]="15";
corrected_hours[16]="16";
corrected_hours[17]="17";
corrected_hours[18]="18";
corrected_hours[19]="19";
corrected_hours[20]="20";
corrected_hours[21]="21";
corrected_hours[22]="22";
corrected_hours[23]="23";


// display the status
document.getElementById("divShowTime").innerHTML = corrected_hours[thehours]+":"+corrected_sixty[themins]+":"+corrected_sixty[thesecs];

}
setInterval("theclock()",1000);

//-->
</script>
<div id=divShowTime></div>
</td>
</tr>
  <tr> <td width="100%" valign="top" background="/themes/mainskins/Blue/images/bb_45.gif"></tr>
  <tr><td id="Theme_tdCounter" width="100%" height="100" align="center" valign="middle"><table id="Theme__ctl4_tblMain" cellspacing="0" cellpadding="0" border="0" dir="ltr">
 <tr>
 <td align="right"><span id="Theme__ctl4_lblTodayHit" class="NormalText">0</span></td>
 <td>&nbsp; : &nbsp;
 </td>
 <td dir="rtl"><span id="Theme__ctl4_lblTodayLabel">بازدید امروز</span></td>
 </tr>
 <tr>
 <td align="right"><span id="Theme__ctl4_lblYesterdayHit" class="NormalText">0</span></td>
 <td>&nbsp; : &nbsp;
 </td>
 <td dir="rtl"><span id="Theme__ctl4_lblYesterdayLabel">بازدید دیروز</span></td>
 </tr>
 <tr>
 <td align="right"><span id="Theme__ctl4_lblLastWeekHit" class="NormalText">0</span></td>
 <td>&nbsp; : &nbsp;
 </td>
 <td dir="rtl"><span id="Theme__ctl4_lblLastWeekLabel">بازدید 7 روز پیش</span></td>
 </tr>
 <tr>
 <td align="right"><span id="Theme__ctl4_lblLastMonthHit" class="NormalText">0</span></td>
 <td>&nbsp; : &nbsp;
 </td>
 <td dir="rtl"><span id="Theme__ctl4_lblLastMonthLabel">بازدید 30 روز پیش</span></td>
 </tr>
 <tr>
 <td align="right"><span id="Theme__ctl4_lblTotalHit" class="NormalText">0</span></td>
 <td>&nbsp; : &nbsp;
 </td>
 <td dir="rtl"><span id="Theme__ctl4_lblTotalVisitLabel">همه بازدید ها</span></td>
 </tr>
</table>
</td>
</tr>
  <tr> <td width="100%" valign="top" background="/themes/mainskins/Blue/images/bb_45.gif"></tr>
  <tr>
   <td id="Theme_tdOutPut" width="100%" height="50" align="center" valign="middle">&nbsp;

<br>
<a href="void(0);" onclick="javascript:ShowPrintPreview();return false;"><img src="/panel/images/print.gif" border="0"></a>
<br>
<br>
<input type="image" name="Theme:_ctl10:ibuXmlPreview" onclick="javascript:GetContentSite();if (typeof(Page_ClientValidate) == 'function') Page_ClientValidate(); " language="javascript" id="Theme__ctl10_ibuXmlPreview" src="/panel/images/xml.gif" alt="" border="0" />
<br>





</td>

  </tr>
                <tr></tr>
               <tr></tr> 
   <tr><td width="100%" height="100%" align="center" valign="top"></td>
</tr>     
    </table>
   </td>
        <td width="18" valign="top" align="right" background="/themes/mainskins/Blue/images/bb_15-back.gif" height="100%"><img src="/themes/mainskins/Blue/images/bb_15.gif"></td>
       </tr>
   
       <tr>
        <td height="15" valign="top" bgcolor="#B7D7FE"><img src="/themes/mainskins/Blue/images/bb_16.gif"></td>
        <td width="100%" height="15" valign="top" background="/themes/mainskins/Blue/images/bb_17-back.gif" ></td>
        <td valign="top" bgcolor="#B7D7FE"><img src="/themes/mainskins/Blue/images/bb_18.gif"></td>
       </tr>
      </table></td>
      </tr>
     <tr>
      <td height="127" colspan="3" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
       <!--DWLayoutTable-->
       <tr>
        <td width="18" height="31" valign="top" background="/themes/mainskins/Blue/images/bb_21.gif"><img src="/themes/mainskins/Blue/images/bb_19.gif"></td>
        <td width="100%" valign="top" background="/themes/mainskins/Blue/images/bb_21.gif"><!--DWLayoutEmptyCell-->&nbsp;</td>
        <td width="20" valign="top" align="right" ><img src="/themes/mainskins/Blue/images/bb_23.gif"></td>
       </tr>
       <tr>
        <td height="31" valign="top" bgcolor="#DCEEFC" background="/themes/mainskins/Blue/images/bb_24-back.gif"><img src="/themes/mainskins/Blue/images/bb_24.gif"></td>
        <td valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0" >
         <!--DWLayoutTable-->
         <tr>
          <td id="Theme_tdMailingList" width="100%" height="31" valign="top" bgcolor="#DCEEFC" align="center"><p>&nbsp;</p>
           
<table id="Theme__ctl6_tblMain" cellspacing="1" cellpadding="1" border="0" align="center">
 <tr>
 <td dir="rtl" align="right"></td>
 </tr>
 <tr>
 <td dir="rtl" align="right">&nbsp;</td>
 </tr>
 <tr>
 <td dir="rtl" align="right" valign="bottom">
  <span id="Theme__ctl6_lblEmail" class="NormalText">اشتراک خبرنامه</span><br>
  <input name="Theme:_ctl6:txtEmail" type="text" id="Theme__ctl6_txtEmail" class="TextBox" style="width:95px;" /><input type="submit" name="Theme:_ctl6:butSignUp" value="تایید" id="Theme__ctl6_butSignUp" class="button" OnClick="javascript:location.href='/default.aspx?page=MailingListGetMail&app=MailingLists&email='+document.getElementById('Theme__ctl6_txtEmail').value;return false;" />
  </td>
 </tr>
 <tr>
 <td dir="rtl" align="right"></td>
 </tr>
 <tr>
 <TD align="center"></TD>
 </tr>
</table>

</td>

         </tr>
        </table></td>
        <td align="right" valign="top" bgcolor="#E3ECFD" background="/themes/mainskins/Blue/images/bb_26.gif" ><img src="/themes/mainskins/Blue/images/bb_26.gif"></td>
       </tr>
       <tr>
        <td height="19" valign="top" background="/themes/mainskins/Blue/images/bb_28.gif"><img src="/themes/mainskins/Blue/images/bb_27.gif"></td>
        <td valign="top" background="/themes/mainskins/Blue/images/bb_28.gif"><!--DWLayoutEmptyCell-->&nbsp;</td>
        <td valign="top" align="right" background="/themes/mainskins/Blue/images/bb_28.gif"><img src="/themes/mainskins/Blue/images/bb_29.gif"></td>
       </tr>
       <tr bgcolor="#B9D9FF">
        <td height="21" colspan="3" valign="top" ><!--DWLayoutEmptyCell-->&nbsp;</td>
        </tr>
       <tr>
        <td height="25" colspan="3" valign="top" align="right" background="/themes/mainskins/Blue/images/bb_37-back.gif"><img src="/themes/mainskins/Blue/images/bb_37.gif"></td>
     </table></td>
      </tr>
     <tr>
      <td height="44" colspan="3" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
       <!--DWLayoutTable-->
       <tr>
        <td height="44" valign="top" background="/themes/mainskins/Blue/images/bb_43.gif"><!--DWLayoutEmptyCell-->&nbsp;</td>
        <td width="45" valign="top" align="right"><img src="/themes/mainskins/Blue/images/bb_44.gif"></td>
       </tr>
      </table></td>
      </tr>
    </table></td>
   </tr>
   </table></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">
 <!-- ScriptName: -->
<script>

</script>




</div>

   <SCRIPT>
            try{window.parent.Redirector(window.location.href);}catch(e){}
   </SCRIPT>
  </form>
 </div>
 <script>function nothin(){};</script>
 </body>
</HTML>
