ÿþ<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="http://www.w3.org/TR/REC-html40"> <head> <meta name="GENERATOR" content="Microsoft FrontPage 5.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <meta http-equiv="Content-Language" content="fa"> <meta http-equiv="Content-Type" content="text/html; charset=unicode"> <title>FH4*'1Ì ~Ì1'EHF *,DÌD '2 ./E'* 12 3'DG /©*1 3(-'FÌ </title> <script language="javaScript"> <!-- /////////////////////////////////////////////////////////////////////////////// // ..:: realMenu v1.27 ::.. // copyright © jordan neill 2000 // Script featured on JavaScript Kit (http://javascriptkit.com) // // change the menuItems array with your options and set the urls to link to // use addMenuItem("Text to show", "Url To Link To"); to make an item // use addMenuItem("Text", Url", "Img To Show"); to make an item with an image // use addMenuItem(); to indicate a separator bar // you can use html tags in the text, eg, <i>, <b> or <u> // // images used should be 16x16 transparent gifs /////////////////////////////////////////////////////////////////////////////// menuItems = new Array(); menuItemNum = 0; function addMenuItem(text, url, img){ if(img) menuItems[menuItemNum] = new Array(text, url, img); else if(text) menuItems[menuItemNum] = new Array(text, url); else menuItems[menuItemNum] = new Array(); menuItemNum++; } menuWidth = 389; //menu width menuHeight = 39; //menu height menuDelay = 50; //delay before menu appears menuSpeed = 8; //speed which menu appears (lower=faster) menuOffset = 2; //offset of menu from mouse pointer addMenuItem("<center>&#1705;&#1575;&#1585;&#1576;&#1585; &#1711;&#1585;&#1575;&#1605;&#1740; &#1578;&#1605;&#1575;&#1605;&#1740; &#1581;&#1602;&#1608;&#1602; &#1575;&#1740;&#1606; &#1587;&#1575;&#1740;&#1578; &#1578;&#1581;&#1578; &#1581;&#1601;&#1575;&#1592;&#1578; &#1602;&#1575;&#1606;&#1608;&#1606; &#1705;&#1662;&#1740; &#1585;&#1575;&#1740;&#1578; &#1605;&#1740; &#1576;&#1575;&#1588;&#1583;</center>","http://www.tarikhaneh.com/"); addMenuItem(" <center>&#1605;&#1583;&#1740;&#1585;&#1740;&#1578; &#1587;&#1575;&#1740;&#1578;</center>","autoplazza@yahoo.com"); /////////////////////////////////////////////////////////////////////////////// // do not edit the code below, it is required for the menu to work correctly /////////////////////////////////////////////////////////////////////////////// if(window.navigator.appName == "Microsoft Internet Explorer" && window.navigator.appVersion.substring(window.navigator.appVersion.indexOf("MSIE") + 5, window.navigator.appVersion.indexOf("MSIE") + 8) >= 5.5) isIe = 1; else isIe = 0; if(isIe){ menuContent = '<table id="rightMenu" width="0" height="0" cellspacing="0" cellpadding="0" style="font:menu;color:menutext;"><tr height="1"><td style="background:threedlightshadow" colspan="4"></td><td style="background:threeddarkshadow"></td></tr><tr height="1"><td style="background:threedlightshadow"></td><td style="background:threedhighlight" colspan="2"></td><td style="background:threedshadow"></td><td style="background:threeddarkshadow"></td></tr><tr height="10"><td style="background:threedlightshadow"></td><td style="background:threedhighlight"></td><td style="background:threedface"><table cellspacing="0" cellpadding="0" nowrap style="font:menu;color:menutext;cursor:default;">'; for(m=0;m<menuItems.length;m++){ if(menuItems[m][0] && menuItems[m][2]) menuContent += '<tr height="17" onMouseOver="this.style.background=\'highlight\';this.style.color=\'highlighttext\';" onMouseOut="this.style.background=\'threedface\';this.style.color=\'menutext\';" onClick="parent.window.location.href=\'' + menuItems[m][1] + '\'"><td style="background:threedface" width="1" nowrap></td><td width="21" nowrap><img src="' + menuItems[m][2] + '"></td><td nowrap>' + menuItems[m][0] + '</td><td width="21" nowrap></td><td style="background:threedface" width="1" nowrap></td></tr>'; else if(menuItems[m][0]) menuContent += '<tr height="17" onMouseOver="this.style.background=\'highlight\';this.style.color=\'highlighttext\';" onMouseOut="this.style.background=\'threedface\';this.style.color=\'menutext\';" onClick="parent.window.location.href=\'' + menuItems[m][1] + '\'"><td style="background:threedface" width="1" nowrap></td><td width="21" nowrap></td><td nowrap>' + menuItems[m][0] + '</td><td width="21" nowrap></td><td style="background:threedface" width="1" nowrap></td></tr>'; else menuContent += '<tr><td colspan="5" height="4"></td></tr><tr><td colspan="5"><table cellspacing="0"><tr><td width="2" height="1"></td><td width="0" height="1" style="background:threedshadow"></td><td width="2" height="1"></td></tr><tr><td width="2" height="1"></td><td width="100%" height="1" style="background:threedhighlight"></td><td width="2" height="1"></td></tr></table></td></tr><tr><td colspan="5" height="3"></td></tr>'; } menuContent += '</table></td><td style="background:threedshadow"></td><td style="background:threeddarkshadow"></td></tr><tr height="1"><td style="background:threedlightshadow"></td><td style="background:threedhighlight"></td><td style="background:threedface"></td><td style="background:threedshadow"></td><td style="background:threeddarkshadow"></td></tr><tr height="1"><td style="background:threedlightshadow"></td><td style="background:threedshadow" colspan="3"></td><td style="background:threeddarkshadow"></td></tr><tr height="1"><td style="background:threeddarkshadow" colspan="5"></td></tr></table>'; menuPopup = window.createPopup(); menuPopup.document.body.innerHTML = menuContent; } function showMenu(){ menuXPos = event.clientX + menuOffset; menuYPos = event.clientY + menuOffset; menuXIncrement = menuWidth / menuSpeed; menuYIncrement = menuHeight / menuSpeed; menuTimer = setTimeout("openMenu(0,0)", menuDelay); return false; } function openMenu(height, width){ iHeight = height; iWidth = width; menuPopup.show(menuXPos, menuYPos, iWidth, iHeight, document.body); if(iHeight < menuHeight) menuTimer = setTimeout("openMenu(iHeight + menuYIncrement, iWidth + menuXIncrement)", 1); else clearTimeout(menuTimer); } if(isIe) document.oncontextmenu = showMenu; //--> </script </head> <style fprolloverstyle>A:hover {color: #C0C0C0; font-family: Tahoma} </style> <script language="JavaScript" fptype="dynamicanimation"> <!-- function dynAnimation() {} function clickSwapImg() {} //--> </script> <script language="JavaScript1.2" fptype="dynamicanimation" src="../../animate.js"> </script> <body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" style="font-family: Tahoma; font-size: 10pt" link="#787485" vlink="#787485" alink="#787485" onload="dynAnimation()" language="Javascript1.2"> <SCRIPT language=javascript> message = " h t t p : / / w w w . T a r i k h a n e h . c o m ^"+ " ----------> K a n o o n e J a v a n a n e T a r i k h a n e h D A M G H A N <---------- ^" + " :::.. i n f o @ T a r i k h a n e h . c o m :::..^" + " T h i s S i t e D e s i g n e d b y T a r i k h a n e h ^" + " ::..COPY RIGHT © 2005-2008 T A R I K H A N E H A L L R I G H T R E S E R V E D ..:: ^" + " :. A l l g r a p h i c s c o p y r i g h t b y t a r i k h a n e h ^" + "" scrollSpeed=80 lineDelay =4500 txt ="" function scrollText(pos){if(message.charAt(pos)!='^'){txt =txt+message.charAt(pos) status=txt pauze =scrollSpeed } else{pauze=lineDelay txt ="" if(pos==message.length-1)pos=-1 } pos++ setTimeout("scrollText('"+pos+"')",pauze) } // Unhide --> scrollText(0) </SCRIPT> <table border="0" cellspacing="1" style="border-collapse: collapse" bordercolor="#111111" width="100%"> <tr> <td width="100%" align="center"> <table border="0" cellspacing="1" style="border-collapse: collapse" bordercolor="#111111" width="42%"> <tr> <td bgcolor="#FFFFFF" height="50" width="640" valign="bottom"> <p align="center"> <img border="0" src="../images/banner_farsi.jpg" width="777" height="84"></td> </tr> <tr> <td height="1" valign="top" width="769"> <table border="0" style="border-collapse: collapse" width="777" height="1"> <tr> <td width="7" background="../images/shadow-left1.gif" height="1">&nbsp;</td> <td valign="top" width="759" height="1"> <table border="0" style="border-collapse: collapse" width="759" bordercolor="#000000" height="469"> <tr> <td valign="top" width="592" height="19" background="../images/line-b-top.gif" dir="rtl" colspan="3"> <p align="right"> <a href="../Index_F.htm"> <img border="0" src="../images/main_page_pic_f.gif" width="59" height="14"></a><img border="0" src="../images/about%20us_pic_f.gif" width="59" height="14"><a href="../darbare%20ma/ertebat%20ba%20ma.htm"><img border="0" src="../images/contact%20us_pic_f.gif" width="59" height="14"></a><img border="0" src="../images/site_map_pic_f.gif" width="59" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="9" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/best_pic_f.gif" width="133" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><a href="../../English/Index_E.htm"><img border="0" src="../images/english_pic.gif" width="59" height="14"></a><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"><img border="0" src="../images/space.JPG" width="6" height="14"></td> <td valign="top" width="163" height="40" background="../images/line-right.gif" rowspan="2"> <p align="center"> <object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj3" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="158" height="37"> <param name="movie" value="../Flash/tarikhaneh.swf"> <param name="quality" value="High"> <param name="bgcolor" value="FFFFFF"> <param name="_cx" value="4180"> <param name="_cy" value="979"> <param name="FlashVars" value> <param name="Src" value="../Flash/tarikhaneh.swf"> <param name="WMode" value="Window"> <param name="Play" value="-1"> <param name="Loop" value="-1"> <param name="SAlign" value> <param name="Menu" value="-1"> <param name="Base" value> <param name="AllowScriptAccess" value="always"> <param name="Scale" value="ShowAll"> <param name="DeviceFont" value="0"> <param name="EmbedMovie" value="0"> <param name="SWRemote" value> <param name="MovieData" value> <embed src="../Flash/tarikhaneh.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj3" width="158" height="37" quality="High" bgcolor="#ffffff"></object> </td> </tr> <tr> <td valign="top" width="134" height="21" dir="rtl"> <p align="right"><font size="2"> <marquee onmouseover="this.stop()" onmouseout="this.start()" scrollAmount="2" scrollDelay="100" width="132" bgColor="#FFFFFF" height="13" align="center" direction="right">©'FHF ,H'F'F *'1J.'FG EB/E ('2/J/©FF/¯'F 92J2 1' ¯1'E&#1740; EJ/'1/</marquee></font></td> <td valign="top" width="56" height="21" dir="rtl" background="../images/tit.gif"> &nbsp;</td> <td valign="top" width="398" height="21" dir="rtl" background="../images/top_new_pi.gif"> <p align="center" style="margin-top: 0; margin-bottom: 0"> <font size="1" color="#FFFFFF">/'F4Ì ©G /1 ,G'F '3* 1' *FG' /1 ,G'F EÌ*H'F J'A* FG /1 ©F, '*'B </font></td> </tr> <tr> <td valign="top" width="592" height="429" colspan="3"> <table border="0" style="border-collapse: collapse" width="100%" height="488"> <tr> <td valign="top" height="488"> <table border="0" style="border-collapse: collapse" width="100%" height="21"> <tr> <td width="5" height="19">&nbsp;</td> <td width="33" background="../images/lheadcenter.gif" height="19">&nbsp;</td> <td background="../images/backheadcenter.gif" dir="rtl" valign="top" style="font-family: Tahoma; font-size: 10pt" height="19"> <p align="right"><font color="#FFFFFF"> :: FH4*'1Ì ~Ì1'EHF *,DÌD '2 ./E'* 12 3'DG /©*1 3(-'FÌ</font></td> <td width="4" background="../images/rheadcenter.gif" height="19">&nbsp;</td> <td width="7" height="19">&nbsp;</td> </tr> </table> <table border="0" style="border-collapse: collapse; text-align:justify" width="589" height="42"> <tr> <td width="5" height="59">&nbsp;</td> <td width="4" background="../images/center_left0.gif" height="59">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="59"> <p class="MsoNormal" dir="RTL"> <span lang="FA" style="font-size:10.0pt;font-family: Tahoma">/1('1G '(9'/ 4.5Ì* '124EF/ '3*'/ E-*1E ,F'( "B'Ì /©*1 -3F 3(-'FÌ  E7'D( (3Ì'1Ì (G 14*G *-1Ì1 /1 "E/G '3*  (H̘G 7Ì †F/ E'G '.Ì1 *9/'/ 2Ì'/Ì '2 3Ì'3*E/'1'F @ /'F4¯'GÌ'F @ 1H2F'EG F¯'1'F H... (G 71- /Ì/¯'G G'Ì .H/ ~Ì1'EHF ./E'* /H'2/G 3'DG 'ÌF FE'ÌF/G EH+1 H ©'1"E/ H ©'14F'3 '/H'1 <img border="0" src="../images/dr33.jpg" align="right" width="146" height="223" alt="/©*1 -3F 3(-'FÌ">E,D3 4H1'Ì '3D'EÌ  ~1/'.*G 'F/. </span> <span lang="FA" style="font-size:10.0pt;font-family:Tahoma"> *H,G (G 'ÌF F©*G ©G FE'ÌF/G 'Ì 7Ì /H /H1G ~Ì'~Ì E,D3 (G 9FH'F A9'D *1ÌF 96H ~'1DE'F 'F*.'( ¯1//  .H/ -'©Ì '2 FB4 *9ÌÌF ©FF/G 'Ì4'F ,G* ~Ì4(1/ 'EH1 /1 BHG EBFFG '3*. '12Ì'(Ì †¯HF¯Ì 'F,'E H8ÌAG B'FHF ¯0'1Ì ©G '5DÌ *1ÌF H EGE *1ÌF E3&HDÌ* FE'ÌF/G EÌ ('4/  E9Ì'1 EF'3(Ì (1'Ì (113Ì EÌ2'F EHABÌ* Ì' 9/E EHABÌ* H©D'Ì E-*1E E,D3 4H1'Ì '3D'EÌ (H/G ©G /©*1 3(-'FÌ FE'ÌF/G '5HD ¯1' H E*9G/ E1/E /'E:'F /1 'ÌF 915G FÌ2 31'A1'2 H (Ì (/ÌD 8'G1 4/G '3*. (G 9FH'F E+'D: Ì©Ì '2 1'GG'Ì 4F'.* F3(Ì '2 9ED©1/ FE'ÌF/¯'F E,D3  (113Ì "E'1 E1(H7 (G 4'.5G'ÌÌ F8Ì1 1- *9/'/ F7B G'Ì ~Ì4 '2 /3*H1 2- *9/'/ ~Ì4FG'/ G' /1 71- G' H DH'Ì- 3- '8G'1 F81 /1 E.'DA* Ì' EH'AB* (' 71- G' H DH'Ì- 4- *9/'/ 3H'D'* '2 H2Ì1'F /HD* 5- *9/'/ *0©1'* (G E/Ì1'F ',1'ÌÌ 6- *9/'/ *0©1'* "ÌÌF F'EG 'Ì 7- *9/'/ '.7'1G'Ì B'FHF '3'3Ì EÌ ('4/. /1 'ÌF EÌ'F "E'1 9ED©1/ E1(H7 (G /©*1 -3F 3(-'FÌ  FE'ÌF/G E3*BD E1/E /'E:'F E1(H7 (G E,'D3 ~F,E @ 44E H GA*E FÌ2 (9FH'F FEHFG 0©1 4/G '3* ©G EÌ *H'F/ 4'.5 .H(Ì (1'Ì E9Ì'1 B1'1/'/F 9ED©1/G' H FG 49'1G' ('4/. *H6Ì- (Ì4*1Ì D'2E FÌ3* †1' ©G "E'1G' .H/ ¯HÌ'3*! </span></p> <p class="MsoNormal" align="center" dir="RTL" style="text-align:center"> <font color="#800000"> <span lang="FA" style="font-size:10.0pt;font-family:Tahoma"> "E'1G'Ì E1(H7 (G ©'1F'EG E,'D3 ~F,E @ 44E H GA*E /©*1 -3F 3(-'FÌ:</span></font></td> <td width="5" background="../images/center_right.gif" height="59">&nbsp;</td> <td width="5" height="59">&nbsp;</td> </tr> <tr> <td width="5" height="18"></td> <td width="4" background="../images/center_left0.gif" height="18">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="18"> <table border="1" cellspacing="1" width="100%" id="AutoNumber1"> <tr> <td width="8%" bgcolor="#008000"> <p class="MsoNormal" align="center" dir="RTL" style="text-align: center"> <font color="#FFFF00"> <span lang="FA" style="font-size:10.0pt;font-family: Tahoma">1/ÌA</span></font></td> <td width="48%" bgcolor="#008000"> <p class="MsoNormal" align="center" dir="RTL" style="text-align: center"> <font color="#FFFF00"> <span lang="FA" style="font-size:10.0pt;font-family: Tahoma">9FH'F</span></font></td> <td width="14%" bgcolor="#008000"> <p class="MsoNormal" align="center" dir="RTL" style="text-align: center"> <font color="#FFFF00"> <span lang="FA" style="font-size:10.0pt;font-family: Tahoma">E,D3 ~F,E</span></font></td> <td width="16%" bgcolor="#008000"> <p class="MsoNormal" align="center" dir="RTL" style="text-align: center"> <font color="#FFFF00"> <span lang="FA" style="font-size:10.0pt;font-family: Tahoma">E,D3 44E</span></font></td> <td width="14%" bgcolor="#008000"> <p class="MsoNormal" align="center" dir="RTL" style="text-align: center"> <font color="#FFFF00"> <span lang="FA" style="font-size:10.0pt;font-family: Tahoma">E,D3 GA*E</span></font></td> </tr> <tr> <td width="8%" align="center"> <font size="2">1</font></td> <td width="48%"> <p class="MsoNormal" align="center" dir="RTL" style="text-align:center"> <span lang="FA" style="font-size:10.0pt;font-family:Tahoma"> F7B ~Ì4 '2 /3*H1</span></td> <td width="14%" align="center"> <font size="2">9</font></td> <td width="16%" align="center"> <font size="2">8</font></td> <td width="14%" align="center"> <font size="2">7</font></td> </tr> <tr> <td width="8%" align="center"> <font size="2">2</font></td> <td width="48%"> <p class="MsoNormal" align="center" dir="RTL" style="text-align:center"> <span lang="FA" style="font-size:10.0pt;font-family:Tahoma"> ~Ì4FG'/ /1 EH1/ 71- G' H DH'Ì- </span></td> <td width="14%" align="center"> <font size="2">131</font></td> <td width="16%" align="center"> <font size="2">394</font></td> <td width="14%" align="center"> <font size="2">370</font></td> </tr> <tr> <td width="8%" align="center"> <font size="2">3</font></td> <td width="48%"> <p class="MsoNormal" align="center" dir="RTL" style="text-align:center"> <span lang="FA" style="font-size:10.0pt;font-family:Tahoma"> '8G'1 F81 /1 E.'DA* Ì' EH'AB* (' 71- G' H DH'Ì- </span></td> <td width="14%" align="center"> <font size="2">65</font></td> <td width="16%" align="center"> <font size="2">128</font></td> <td width="14%" align="center"> <font size="2">138</font></td> </tr> <tr> <td width="8%" align="center"> <font size="2">4</font></td> <td width="48%"> <p class="MsoNormal" align="center" dir="RTL" style="text-align:center"> <span lang="FA" style="font-size:10.0pt;font-family:Tahoma"> 3H'D '2 H21' </span></td> <td width="14%" align="center"> <font size="2">2</font></td> <td width="16%" align="center"> <font size="2">5</font></td> <td width="14%" align="center"> <font size="2">1</font></td> </tr> <tr> <td width="8%" align="center"> <font size="2">5</font></td> <td width="48%"> <p class="MsoNormal" align="center" dir="RTL" style="text-align:center"> <span lang="FA" style="font-size:10.0pt;font-family:Tahoma"> *0©1 (G 1&Ì3 ,EGH1 H Ì' H2Ì1'F</span></td> <td width="14%" align="center"> <font size="2">39</font></td> <td width="16%" align="center"> <font size="2">36</font></td> <td width="14%" align="center"> <font size="2">55</font></td> </tr> <tr> <td width="8%" align="center"> <font size="2">6</font></td> <td width="48%"> <p class="MsoNormal" align="center" dir="RTL" style="text-align:center"> <span lang="FA" style="font-size:10.0pt;font-family:Tahoma"> *0©1 "ÌÌF F'EG 'Ì</span></td> <td width="14%" align="center"> <font size="2">20</font></td> <td width="16%" align="center"> <font size="2">85</font></td> <td width="14%" align="center"> <font size="2">108</font></td> </tr> <tr> <td width="8%" align="center"> <font size="2">7</font></td> <td width="48%"> <p class="MsoNormal" align="center" dir="RTL" style="text-align:center"> <span lang="FA" style="font-size:10.0pt;font-family:Tahoma"> '.7'1 B'FHF '3'3Ì</span></td> <td width="14%" align="center"> <font size="2">11</font></td> <td width="16%" align="center"> <font size="2">22</font></td> <td width="14%" align="center"> <font size="2">47</font></td> </tr> </table> </td> <td width="5" background="../images/center_right.gif" height="18">&nbsp;</td> <td width="5" height="18"></td> </tr> <tr> <td width="5" height="18"></td> <td width="4" background="../images/center_left0.gif" height="18">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="18"> </td> <td width="5" background="../images/center_right.gif" height="18">&nbsp;</td> <td width="5" height="18"></td> </tr> <tr> <td width="5" height="18"></td> <td width="4" background="../images/center_left0.gif" height="18">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="18"> <p class="MsoNormal" dir="RTL"> <span lang="FA" style="font-size:10.0pt;font-family: Tahoma">Ì©Ì '2 ,'D( *H,G *1ÌF H,HG 9ED©1/ ,F'( "B'Ì /©*1 3(-'FÌ  1B'(* (' ©'F/Ì/'Ì A1'©3ÌHF '©+1Ì* (1'Ì 1Ì'3* E,D3 GA*E '3*. 'Ì4'F ©G (G 5H1* E3*BD  FB/G'ÌÌ '5HDÌ 1' (1 A9'DÌ* GÌ#* 1&Ì3G E,D3 H'1/ EÌ /'F3*F/ (' '3*A'/G '2 1'G©'1 'F*.'( 3'DÌ'FG 'A1'/ E2(H1  (G (Ì'F F81'* ©'14F'3'FG .HÌ4 /1 1'3*'Ì "3Ì( 4F'3Ì 9ED©1/ E,D3 (G 9FH'F ,'̯'GÌ B/1*EF/ H EH+1 (1'Ì -D E4©D'* '3'3Ì E1/E ~1/'.*F/ H G1 /H1G FÌ2 (' ©3( "1'Ì (3Ì'1Ì '2 FE'ÌF/¯'F  1BÌ(Ì 4'.5 (1'Ì 1&Ì3 HB* E,D3 (G 4E'1 "E/F/. D'2E (G 0©1 '3* ©G ,F'( "B'Ì /©*1 3(-'FÌ /1 ',D'3ÌG 'HD E,D3 GA*E (' ©3( 55 1#Ì @ /1 ',D'3ÌG /HE E,D3 GA*E (' ©3( 68 1#Ì @ /1 ',D'3ÌG 3HE E,D3 GA*E (' ©3( 97 1#Ì H /1 ',D'3ÌG †G'1E E,D3 GA*E (' ©3( 85 1#Ì  *FG' 1BÌ( ,/Ì /©*1 -/'/ 9'/D /1 'F*.'( 1&Ì3 E,D3 4H1'Ì '3D'EÌ (H/F/. </span></p> <p class="MsoNormal" dir="RTL"> <span lang="FA" style="font-size:10.0pt;font-family: Tahoma"><img border="0" src="../images/dr0001.jpg" align="left" width="187" height="127" alt="/©*1 3(-'FÌ @ 1&Ì3 ©EÌ3ÌHF *DAÌB /1 E,D3 GA*E ">'2 /̯1 5A-'* ©'1F'EG /1.4'F FE'ÌF/¯Ì ,F'( "B'Ì /©*1 -3F 3(-'FÌ  1Ì'3* 'Ì4'F /1 3'D 'HD /H1G GA*E (1 ©EÌ3ÌHF (1F'EG H (H/,G H E-'3('* E,D3 4H1'Ì '3D'EÌ H E/Ì1Ì* ©EÌ3ÌHF *DAÌB (1F'EG †G'1E *H39G 3Ì'3Ì  'B*5'/Ì  A1GF¯Ì H ',*E'9Ì ,EGH1Ì '3D'EÌ 'Ì1'F H 1&Ì3 ©EÌ3ÌHF *DAÌB (H/,G 3'D 1384 '3*. /1 GE'F 3'D (H/ ©G F1. *H1E ©'G4 Ì'A* H 71-G'JÌ</span><font size="2"><span lang="fa"> </span> </font> <span lang="FA" style="font-size:10.0pt;font-family: Tahoma">(' G/A 'A2'Ì4 'F6('7 E'DÌ /1 ©4H1 H -E'Ì* '2 'B4'1 "3Ì( ~0Ì1 ,'E9G *H37 FE'ÌF/¯'F E,D3 *5HÌ( ¯4*.</span></p> <p class="MsoNormal" dir="RTL"> <span lang="FA" style="font-size:10.0pt;font-family: Tahoma">'2 /̯1 71- G'Ì ~Ì4FG'/Ì /©*1 -3F 3(-'FÌ EÌ *H'F (G 'ÌF EH'1/ '4'1G FEH/: 1</span><span lang="FA" style="font-size:10.0pt;font-family:Tahoma">) 'A2'Ì4 E3*E1Ì .'FH'/G G'Ì EH1/ -E'Ì* /HD* Ì9FÌ ©EÌ*G 'E/'/ 'E'E .EÌFÌ «1G» H (G2Ì3*Ì 2) '3*./'E E9DEÌF -B 'D*/1Ì3Ì ©G ./E'* EFA5D "EH24Ì /'4*G 'F/ '2 71ÌB *A3Ì1 B'FHFÌ E5H(G E,D3 3) ~'3.¯H 4/F H21'Ì 'B*5'/ H E3©F H ©4H1 /1 B('D ',1'Ì B'FHF *3GÌD '2/H', ,H'F'F 4) *+(Ì* 'A2'Ì@4 E3*E@1Ì H'D/ÌF 4G/' 5) EEFH9Ì* 'A2'Ì4 G2ÌFG (ÌEG .H/1HG'Ì (' 9E1 (Ì4 '2 ~'F2/G 3'D 6) ©'G4 '96'Ì 3*'/ E('12G (' /.'FÌ@'* 7) -0A /H /15/ E'DÌ* *F8ÌE '3F'/ *H37 /A'*1 '3F'/ 13EÌ 8) BÌE* ¯0'1Ì 2EÌF G'Ì 5F9*Ì H E9/FÌ GE'FF/ 2EÌF G'Ì ©4'H12Ì (1'Ì 3GHD* /1 'E1 31E'ÌG ¯0'1Ì 9) 'F*.'( 4G1/'1'F *H37 4H1'G'Ì 4G1 (G ,'Ì 'F*.'( "FG' *H37 E1/E (' 1#Ì E3*BÌE 10) 9/E 'A2'Ì4 G2ÌFG /'/13Ì *H37 BHG B6'ÌÌG '2 4'©Ì'FÌ ©G (1'Ì '-B@'B -B (G "F E1',9G EÌ ©FF/ 11) ~Ì4FG'/ '3'3F'EG 96HÌ* /HD* ,EGH1Ì '3D'EÌ /1 E1©2 (ÌF 'DEDDÌ «32'EÌ» 12) ',('1Ì F4/F "EH24 ©'1©F'F 3'.*E'FÌ (1'Ì (ÌEG *'EÌF ',*E'9Ì 4/F "FG' 13) ~1/'.* E3*E1Ì (G A12F/'F 2F'F E*HAÌ E4EHD B'FHF *'EÌF ',*E'9Ì ~3 '2 E1¯ "F'F «GE'FF/ E1/'F» 14) EEFH9Ì* '3*A'/G '2 *3GÌD'* H1H/ (G /'F4¯'G G' (1'Ì :Ì1 12EF/¯'F 15) *'EÌF E'DÌ *H39G ~H44 ./E'* *H'F (.4Ì (G 100 G2'1 E9DHD H 3Ì G2'1 2F 31~13* .'FH'1 EF*81 FH(* /1 3'2E'F (G2Ì3*@Ì 16) ©'G4 3H/ ('21¯'FÌ .H/1HG'Ì H'1/'*@Ì (1'Ì -E'Ì@* '2 5F'Ì9 /'.DÌ H '4*:'D H B79G 3'2Ì 17) 'A2'Ì4 -BHB ('2F43*¯'F (1'3'3 B'FHF ./E'* E/Ì1Ì* ©4H1Ì (H/,G 1387</span></p> <p class="MsoNormal" dir="RTL"> <span lang="FA" style="font-size:10.0pt;font-family: Tahoma">GE†FÌF ,F'( "B'Ì /©*1 3(-'FÌ (' (G1G EF/Ì '2 /'F4 H (ÌF4 H3Ì9 H /H1 'F/Ì4Ì  /1 (1GG G'Ì -3'3Ì GE†HF E,D3 44E (G /A'9 '2 ©Ì'F '3D'E H 'FBD'( '3D'EÌ ~1/'.*F/ ©G ~3 '2 *B/ÌE .D'5G ¯2'14 (Ì'F'* H 'B/'E'* 'Ì4'F /1 "F /H1G (G E-61 1G(1 E98E 'FBD'( '3D'EÌ H 3'Ì1 EB'E'* 9'DÌ ©4H1  'ÌF 5A-G EGE '2 *'1Ì. E9'51 (G GE* 'F*4'1'* 31H4  EF*41 ¯4*.</span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%"><span lang="FA" style="font-size:10.0pt;font-family:Tahoma">/1 (.4Ì '2 'ÌF *-BÌB ,'E9 ©G *H37 EH33G ,1Ì'F 4F'3Ì *'1Ì. E9'51 'Ì1'F 'F,'E ~0Ì1A*  †FÌF "E/G '3*: <font color="#000080">«(G ÌBÌF 4'Ì3*G *1ÌF 'D¯HÌ FE'ÌF/¯Ì /1 EÌ'F FE'ÌF/¯'F E,D3 44E  /©*1 -3F 3(-'FÌ FE'ÌF/G /'E:'F '3* ©3Ì ©G /1 EB'E F7B '2 EGE'* H '1©'F F8'E /A'9 ©1/G H /1 F8'E 9ED (' 437 EH1/ ~Ì4FG'/ /1 71- G' H DH'Ì-  68 EH1/ *0©1 "ÌÌF F'EG G'Ì  15 EH1/ '.7'1 B'FHF '3'3Ì  28 EH1/ *0©1 (G E3&HDÌF ',1'ÌÌ H 6 EH1/ 3H'D '2 H21' (/HF -*Ì Ì© ,D3G :Ì(* H AB7 (' 93 /BÌBG *'.Ì1 /1 3G 3'D 'D¯HÌ (3Ì'1 EF'3(Ì (1'Ì F4'F /'/F Ì© FE'ÌF/G /'H7D( H ©'1"E/ '3*.»</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%"><span lang="FA" style="font-size:10.0pt;font-family:Tahoma"> GE¯'F EÌ /'FF/ ©G 'ÌF 'F3'F H'D' /1 2F/¯Ì 4.5Ì .H/ FÌ2 "F†F'F 3'/G H (Ì "D'Ì4 '3* ©G G1 'F3'F EF5AÌ 1' (G '-*1'E H' EÌ /'1/. </span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%"><span lang="FA" style="font-size:10.0pt;font-family:Tahoma"> F'¯A*G FE'F/ ©G 'Ì4'F *' GEÌF 3'D G'Ì '.Ì1 '2 .'FG '3*Ì,'1Ì '3*A'/G EÌ FEH/F/ H 9DÌ1:E *5/Ì 3G /H1G FE'ÌF/¯Ì E,D3  *FG' '2 /'F4¯'G *G1'F -BHB EÌ ¯Ì1F/. </span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%"><span lang="FA" style="font-size:10.0pt;font-family:Tahoma"> /1('1G F¯14 E+(* E1/E F3(* (G /©*1 3(-'FÌ (' 9F'Ì* (G 4H'G/ EH,H/ EÌ *H'F ¯A*: B'7(G EH'AB'F H E.'DA'F 'Ì4'F  GE¯Ì (1 'ÌF F©*G '09'F /'1F/ ©G /©*1 3(-'FÌ 4.5Ì E*BÌ  EF5A H EAÌ/ (G -'D ©4H1 '3* H -*Ì ©3'FÌ ©G (G G1 /DÌD 'Ì4'F 1' EF*.( .H/ /1 'F*.'('* '.Ì1 B1'1 F/'/F/  (1 3D'E* H 5/'B* /©*1 3(-'FÌ 5-G EÌ ¯0'1F/. </span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%"><span lang="FA" style="font-size:10.0pt;font-family:Tahoma"> /1.5H5 9ED©1/ 4G13*'FÌ "B'Ì 3(-'FÌ FÌ2 FEÌ *H'F '2 F81 /H1 /'4* ©G /'E:'F (' ,E9Ì*Ì ('D: (1 80 G2'1 FA1 /1 2E1) 4G13*'F G'Ì ©H†© ©4H1 (G 4E'1 EÌ "Ì/ ©G (/ÌF 9D* (H/,G "F F3(* (G 4G1G'Ì (21¯*1 '2 -,E ©E*1Ì (1.H1/'1 '3* HDÌ (' 'ÌF GEG  ©'1G'Ì 9E1'FÌ EGEÌ GE†HF ',1'Ì 292 ~1H˜G 9E1'FÌ H 2Ì1(F'ÌÌ (' *D'4 H ~̯Ì1Ì 'Ì4'F H 3'Ì1 E3&HDÌF ',1'ÌÌ (G 'F,'E 13Ì/G '3* ©G 9F'HÌF (1.Ì '2 "FG' 9('1*F/ '2: '-/'+ E,*E9 (21¯ A1GF¯Ì H GF1Ì &nbsp;4GÌ/ 4'G†1':Ì @ ©*'(.'FG 4E'1G 2 ©'FHF ~1H14 A©1Ì ©H/©'F H FH,H'F'F @ 4(©G G'Ì 3 H 4 H .(1 H '3*'FÌ H GE†FÌF 'FH'9 4(©G G'Ì 1'/ÌHÌÌ @ *'3Ì3 /'F4¯'G *.55Ì 9DHE ~'ÌG /'E:'F H '-/'+ 3'.*E'FG'Ì "F @ 41H9 (G '-/'+ 3'.*E'F /'F4©/G (G/'4* @ '-/'+ E1'©2 AFÌ H -1AG 'Ì&nbsp; @ *'3Ì3 "EH24©/G ©4'H12Ì /1 'EÌ1ÌG @ '-/'+ (ÌE'13*'F 160 *.*.H'(Ì @ 4('FG 1H2Ì 4/F /1E'F¯'G *'EÌF ',*E'9Ì @ '-/'+ 19 3'DF H124Ì H 3 E,*E9 (21¯ H124Ì /'F4¯'GÌ /1 4G1G' H 1H3*'G'Ì /'E:'F @ '-/'+ 3/ E.2FÌ 4GÌ/ 4'G†1':Ì /'E:'F @ ',1'ÌÌ 4/F A'6D'( /'E:'F /1 3'D 1387 @ 'F*B'D "( ©4'H12Ì /1 FB'7 E.*DA /'E:'F @ (1F'EG 1Ì2Ì 'F*B'D "( 41( H ©4'H12Ì '2 4E'D ©4H1 (G /'E:'F /1 "ÌF/G @ '-/'+ 1'G G' H ('F/ /HE ,'/G G'Ì EGE '71'A /'E:'F (F-HÌ ©G '©FHF /'E:'F †G'1 1'G '1*('7Ì ©4H1 H'B9 4/G H (G EF2DG ~DÌ  41B 1' (G :1( H ,FH( ©4H1 1' (G 4E'D "F E*5D EÌ ©F/ @ 'Ì,'/ ©E1(F/Ì /1 3G †G'1E E-Ì7 4G1 /'E:'F H E7'D9G (1'Ì ©E1(F/Ì ,FH( 41BÌ /'E:'F ,G* '*5'D 1'G 4'G1H/ (G 1'G ,FH( @ "3A'D* 1'G (Ì4 '2 40 1H3*' @ ¯'213'FÌ (G 4G1G'Ì 'EÌ1ÌG H /Ì(', H GE†FÌF 4G1© G'Ì ¯D3*'F H (H3*'F H (G'13*'F H 1'G "GF /'E:'F @ ¯'213'FÌ (G 10 1H3*' @ /1 41A '*E'E (H/F ¯'213'FÌ (G 14 1H3*'Ì /̯1 @ 71'-Ì H ',1'Ì ¯'213'FÌ (G 6 1H3*' H ('D'.1G 71'-Ì ¯'213'FÌ (G 6 1H3*'Ì EF7BG 31/3Ì1 *HÌG /1H'1@ (G3'2Ì 16 1H3*' @ (1B 13'FÌ (G 3 1H3*' H 'Ì,'/ 12 E,*E9 (21¯ "(13'FÌ 1H3*'ÌÌ @ *H39G 4(©G *DAF +'(* *B1Ì('K (G GEG 1H3*'G'Ì /'E:'F ©G ,E9Ì* H Ì' "E'/¯Ì '3*A'/G '2 *DAF +'(* 1' /1 EF'2D .H/ /'4*G 'F/ H... </span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%"><span lang="FA" style="font-size:10.0pt;font-family:Tahoma"> /©*1 3(-'FÌ '2 /Ì1('2 (G *H39G 31E'ÌG ¯0'1Ì /1 /'E:'F EÌ 'F/Ì4F/ H (1'Ì ,0( 31E'ÌG ¯0'1'F (G 'ÌF 4G13*'F *D'4 G'Ì '12F/G 'Ì 1' ":'2 FEH/G 'F/ ©G FHÌ/ "ÌF/G 1H4FÌ 1' (1'Ì /'E:'FÌ G' EÌ /G/. GE '©FHF (Ì4 '2 ~F,'G ~1H˜G ,/Ì/ 5F9*Ì /1 /'E:'F 3'E'F Ì'A*G '3*  (96Ì '2 'ÌF ~1H˜G G' (G E1-DG (G1G (1/'1Ì 13Ì/G H (96Ì /1 -'D '-/'+ G3*F/. *9/'/Ì GE /1 FH(* /1Ì'A* *3GÌD'* H EB/'1Ì GE /1 FH(* /1Ì'A* 2EÌF EÌ ('4F/. 'ÌF -,E ('D'Ì ~1H˜G (' 9F'Ì* (G E4©D '3'3Ì H E'F9 ©E(H/ "( /1 /'E:'F H EEFH9Ì* -A1 †'G (1'Ì 5F9* (3Ì'1 †4E¯Ì1 '3*. /1 'ÌF E,EH9G ~1H˜G G'&nbsp; 3ÌE'F @ B79G 3'2Ì .H/1H @ .H/1H 3'2Ì @ *HDÌ/ ©':0 *-1Ì1 @ (3*G (F/Ì EH'/ :0'ÌÌ H ~3*G @ *HDÌ/ .H1'© /'E @ *HDÌ/ ~'FDG'Ì 3'.*E'FÌ ~Ì4 3'.*G @ *HDÌ/ 'FH'9 ~1/G @ 1'/Ì'*H1 .'F¯Ì @ /1'E G'Ì EBH'ÌÌ @ /'1H 3'2Ì @ *HDÌ/ 'FH'9 Ì.†'D @ D(FÌ'* @ 31/.'FG @ ©'4Ì @ 31'EÌ© @ FÌ1H¯'G ¯'2Ì H... H,H/ /'1F/.</span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%"><span lang="FA" style="font-size:10.0pt;font-family:Tahoma"> 3A1G'Ì E*9// ,F'( "B'Ì /©*1 3(-'FÌ (G /'E:'F H -6H1 EF8E FE'ÌF/G E1/E /1 1H3*'G'Ì 'ÌF 4G13*'F  2EÌFG 3'2 ¯4H/F ¯1G G'Ì (3Ì'1Ì '2 2F/¯Ì E1/E (H/G '3* H ©E© G'Ì ~FG'F 'Ì4'F (G 'A1'/ FÌ'2EF/  /'3*'F EA5DÌ /'1/ ©G ('Ì/ /1 HB* .H/ (/'F ~1/'.*. </span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%"><span lang="FA" style="font-size:10.0pt;font-family:Tahoma"> /1'F*G' ('Ì/ ¯A*: "F†G (Ì'F 4/ *FG' ¯H4G 'Ì '2 E,EH9G 2-E'* 4('FG 1H2Ì /©*1 3(-'FÌ /1 E/* /H'2/G 3'D FE'ÌF/¯Ì E,D3 (H/ H 4'Ì/ *H6Ì- /BÌB (1.Ì '2 'B/'E'* 'Ì4'F /1 'ÌF 3'D G'  E-*', F¯'4*F ©*'( G'Ì A1'H'FÌ ('4/ *' "-'/ E1/E E' (Ì4 '2 ~Ì4 (' 'ÌF 'F3'F -BÌB*'K /'F4EF/ H ¯1'FE'ÌG "4F' 4HF/. (Ì 4© F'E /©*1 3(-'FÌ /1 *'1Ì. 'Ì1'F ~'ÌF/G .H'G/ E'F/ H "ÌF/¯'F  ©'3*Ì G'Ì E' 1' /1 B/14F'3Ì '2 'ÌF †G1G E'F/¯'1 (171A EÌ 3'2F/. -O3F .*'E 'ÌF E7D( B3E*Ì '2 (Ì'F'* 'Ì4'F 7Ì ".1ÌF 3.F1'FÌ /H1'F *(DÌ:'* 'F*.'('*Ì E,D3 G4*E /1 /'E:'F '3*  "F,' ©G /1/EF/'FG A1EH/F/: </span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%"><span lang="FA" style="font-size:10.0pt;font-family:Tahoma"> «-'D 3H'D 'ÌF '3* '¯1 E,D3 4H1'Ì '3D'EÌ /'1'Ì 'ÌF GEG H8'ÌA '3* (1'Ì †G (1.Ì '2 'ÌF E3'&D /1 4G1 H 1H3*' H ©4H1 E' H,H/ F/'1/ '¯1 EED©* 'ÌF GEG ~HD FA* 1' /1 /G /H'2/G 3'D ¯04*G /'4*G '3* †1' *H1E  (Ì©'1Ì  9/E F8'1* /1 '/'1'*  H69Ì* ©'1¯1'F /†'1 B1'1/'/G'Ì EHB* ©'1  E4©D'* "EH24Ì  /1E'FÌ  14HG H A3'/ '/'1Ì  H,H/ ('F© G'Ì 1(HÌ  .5H5Ì 3'2Ì G'Ì (Ì -'5DÌ ©G 'EH'D ED* 1' /1 '.*Ì'1 ©3'FÌ B1'1 EÌ /G/ ©G F('Ì/ B1'1 (¯Ì1/ H,H/ /'1/. †1' 9DÌ 1:E 'ÌF©G 'E'E A1EH/ E,D3 /1 1'3 'EH1 '3* E,D3 /1 1'3 'EH1 B1'1 F/'1/. †1' 9DÌ1:E 'ÌF ©G E' 'ÌF GEG ~HD /1 ©4H1 /'1ÌE 2F/¯Ì E1/E '2 F81 A4'1 H69Ì* EF'3(*1Ì ~Ì/' FEÌ ©F/. EF 'ÌF 3H'D 1' (G 'ÌF 5H1* ./E* (21¯'F  92Ì2'FÌ ©G G3*Ì/ ~'3. EÌ /GE ©G E,D3 †HF ©'1"E/ *4©ÌD FEÌ 4H/ FEÌ *H'F/ '2 -BHB ED* /A'9 ©F/. E,D3  H©D' 9E/*' '2 H8'ÌA H -BHBÌ ©G EHB9 'F*.'('* EÌ .H'GF/ '2 "F 5-(* ©FF/ ('.(1 FÌ3*F/ FE'ÌF/¯'F (G -BHB ED* HBHA F/'1F/. "FG'ÌÌ ©G *(DÌ:'* EÌ ©FF/ ¯HÌÌ '5D'K B'FHF '3'3Ì 1' F¯'G FEÌ ©FF/. (1'Ì 1A*F (G Ì© †4E ~24© 4E' -*E' (G /'F/'F ~24© E1',9G FEÌ ©FÌ/ †7H1 EE©F '3* /1 'F*.'('* E,D3 4H1'Ì '3D'EÌ ©G 7(Ì9Ì *1ÌF E3&DG ©G H8ÌAG E,D3 '3* 9F'Ì* F4H/. ©3'FÌ ©G FEÌ /'FF/ (1'Ì †G ©'1Ì (G E,D3 EÌ 1HF/ /1 ,D3'* E,D3 ©E 41©* EÌ ©FF/. /1©EÌ3ÌHF G' -6H1 ,/Ì F/'1F/. Ì' /1 E,D3 FÌ3*F/ H Ì' '¯1 G3*F/ (96'K †O1* EÌ 2FF/ H /1 9ED (G *©'DÌA4'F 3'9Ì H ,/Ì FÌ3*F/. D0' H8'ÌA E,D3 1HÌ 2EÌF EÌ E'F/. ',1'ÌÌ FEÌ 4H/ H Ì' -/'BD F'B5 ',1' EÌ 4H/. (/ÌF *1*Ì( GE E,D3 .'DÌ EÌ E'F/ H ©'1G' EÌ E'F/ H GE '2 71A /̯1 ©3'FÌ ©G 9FH'F FE'ÌF/G ED* 1' ¯1A*F/ -/'©+1/1 FB4 Ì© 4G1/'1 Ì' A1E'F/'1 Ì' 96H 4H1'Ì 4G1 8'G1 EÌ 4HF/. 1'G©'1 †Ì3* 1'G©'1 'ÌF '3* ©G ('Ì/ E,D3Ì EEDH '2 FE'ÌF/¯'F "¯'G (G H8'ÌA H "¯'G (G -BHB ED* *4©ÌD 4H/ *' +E1G ©'1 "FG' HB*Ì /3* /HD* H HB*Ì /3* BHG B6'ÌÌG B1'1 ¯1A* (*H'FF/ E4©D E1/E 1' -D (©FF/ H †FÌF F('4/ ©G E1/E '-3'3 ©FF/ ©G /1 1A*F (G /'/¯'G -B "FG' '-B'B FEÌ 4H/. '¯1 EF4' ©G E,D3 '3* /1E'F F4H/ GEG 'ÌF E4©D'* ©G /1 4G1G' H 1H3*'G' '3* ('BÌ EÌ E'F/. E4©D'* 4G1G' H 1H3*'G' E9DHD '3*. 9D* /1 E,D3 '3*. '¯1 9D* 1' /1E'F F©FÌE E9DHD -D FEÌ 4H/. '¯1 †G'1*'Ì "F 1' -D ©FÌE 44 *'Ì /̯1 8'G1 EÌ 4H/. E4©D'* E/'E ('2 *HDÌ/ EÌ 4H/&nbsp; H .H/4 1' '3*E1'1 EÌ (.4/. AB1 *(9Ì6 H A3'/ E9DHD GEÌF 4ÌHG *4©ÌD E,D3 '3*. ©3'FÌ ©G ©'1 .H/ 1' *1© EÌ ©FF/ (1'Ì E,D3 E7'D9G FEÌ ©FF/ HB*Ì (G E,D3 EÌ "ÌF/ "E'/G FÌ3*F/ (G .'71 'ÌF©G 4( /1 (ÌF 1'G H Ì' /1 GH'~ÌE' (H/F/. E/'1©Ì 1' ©G ('Ì/ 1'Ì (/GF/ H -*Ì 1'Ì (/GF/ ©G E+D' Ì© EA3/ '9/'E (4H/ H Ì' -(3 '(/ 4H/ F.H'F/F/. -/'©+1 †O1* EÌ 2FF/. 250 FA1 /1 E,D3 F43*F/ 120 FA14'F -*Ì 'ÌF /©EG 1' A4'1 FEÌ /GF/. 'ÌF 8DE (G -BHB ED* '3*. 'E' †1' 'ÌF '*A'B 'A*'/G 92Ì2'F  E,D3 ©G F'©'1"E/ 4/ E4©D'* EF H 4E' /1 'ÌF,' ('BÌ EÌ E'F/. E9DHE '3* ©G '¯1 E4©D /'1ÌE E,D3 F'©'1"E/ '3*. 'E' E,D3 1' ©Ì 'F*.'( EÌ ©F/ E,D3 F*Ì,G 'F*.'( 4E' '3*! '¯1 E,D3 F'©'1"E/ '3* (G EF H 4E' (1EÌ ¯1//. '¯1 ©'1"E/ '3* GE (G EF H 4E' (1EÌ ¯1//. '¯1 (¯HÌÌE †HF F'©'1"E/ '3* (¯0'1ÌE (E'F/  "F ,'ÌÌ ©G "( F43* EÌ ©F/ ('BÌ EÌ E'F/. 'ÌF 3BA 1' G1 †Ì FB'4Ì ©FÌ/ ('2 FE EÌ 2/. E,D3 1' /1Ì'(Ì/! EF '2 1'G /H1 5-(* FEÌ ©FE. /H'2/G 3'D 2Ì1 "F 3BA D-8G (G D-8G E'F/E H .HF /D .H1/E&nbsp; H /Ì/E ©3'FÌ (,'Ì 'ÌF©G H©ÌD (4HF/ ,'Ì 'ÌF (H/ ©G A1E'F/'1 (4HF/ 96H 4H1' (4HF/ 1&Ì3 '/'1G ¯'2 (4HF/ '4*('GÌ "E/F/  "E/F/ ©'1 ©3'FÌ 1' ©1/F/ ©G (/ÌF EF8H1 ~HD EÌ ¯1A*F/ H A1'EH4 ©1/F/ E,D3 1' ©G EÌ ('Ì/ /1 "F,' ('4/. '2 /'EF AB1 H ¯13F¯Ì H (Ì©'1Ì ©G ('Ì/ /1 E,D3 3'E'F/GÌ 4H/ "3Ì( ',*E'9Ì  7D'B  4DH:Ì /'/¯'G G'  9/E "1'E4 .'FH'/G G'  A-4'  ©H/©'F ©'1  '9*Ì'/ (G EH'/ E./1  'A2'Ì4 2F/'FÌ /1 2F/'F 31 /1 EÌ "H1F/. GEG 'ÌFG' E9DHD E,'D3 F'©'1"E/ '3* H EF 5'/B'FG 916 EÌ ©FE E3&HDÌ* E,'D3 F'©'1"E/ (G E1/EÌ (1EÌ ¯1// ©G /1 'F*.'('* E,D3 (G ,'Ì 'ÌF©G H©ÌD E,D3 'F*.'( (©FF/  96H 4H1'Ì 4G1 H /G 'F*.'( EÌ ©FF/.»</span></td> <td width="5" background="../images/center_right.gif" height="18">&nbsp;</td> <td width="5" height="18"></td> </tr> <tr> <td width="5" height="18"></td> <td width="4" background="../images/center_left0.gif" height="18">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="18" align="justify"> </td> <td width="5" background="../images/center_right.gif" height="18">&nbsp;</td> <td width="5" height="18"></td> </tr> <tr> <td width="5" height="18"></td> <td width="4" background="../images/center_left0.gif" height="18">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="18" align="justify"> </td> <td width="5" background="../images/center_right.gif" height="18">&nbsp;</td> <td width="5" height="18"></td> </tr> <tr> <td width="5" height="18"></td> <td width="4" background="../images/center_left0.gif" height="18">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="18" align="justify"> <p align="center"><font size="2">EH1. 18/2/87</font></td> <td width="5" background="../images/center_right.gif" height="18">&nbsp;</td> <td width="5" height="18"></td> </tr> <tr> <td width="5" height="18" dir="rtl"></td> <td width="4" background="../images/center_left0.gif" height="18" dir="rtl">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="18"> <form method="POST" action="http://www.tarikhaneh.com/Farsi/Contact/email.php" dir="rtl"> <p style="margin-top: 0; margin-bottom: 0" align="right" dir="rtl">&nbsp;</p> <p style="margin-top: 0; margin-bottom: 0" align="right" dir="rtl"> <font color="#000080"><span style="font-size: 9pt">F81 4E' /1('1G 'ÌF E7D(</span></font></p> <p style="margin-top: 0; margin-bottom: 0" align="right" dir="rtl"> <font color="#000080"><span style="font-size: 9pt">&nbsp;</span></font></p> <div align="center" dir="rtl"> <center dir="rtl"> <div align="right"> <table border="0" cellpadding="0" style="border-collapse: collapse" width="42%" height="20" bordercolor="#000000" id="table2" dir="rtl"> <tr> <td height="23" width="36%" style="font-family: Tahoma; font-size: 9pt" dir="rtl"> <p style="margin-top: 0; margin-bottom: 0" align="right" dir="rtl"> <font face="Tahoma">&nbsp;<span lang="fa">F'E H F'E .'FH'/¯Ì</span></font></td> <td height="23" width="64%" style="font-family: Tahoma; font-size: 9pt" dir="rtl"> <p style="margin-top: 0; margin-bottom: 0" align="center" dir="rtl"> <font face="Tahoma"> <input type="text" name="name" size="30" style="font-family: Tahoma; font-size: 8pt"></font></td> </tr> <tr> <td height="12" width="36%" style="font-family: Tahoma; font-size: 9pt" dir="rtl"> <p style="margin-top: 0; margin-bottom: 0" align="right" dir="rtl"> <font face="Tahoma">&nbsp;<span lang="fa">"/13&nbsp; 'ÌEÌD</span></font></td> <td height="12" width="64%" style="font-family: Tahoma; font-size: 9pt" dir="rtl"> <p style="margin-top: 0; margin-bottom: 0" align="center" dir="rtl"> <font face="Tahoma"> <input type="text" name="email" size="30" style="font-family: Tahoma; font-size: 8pt"></font></td> </tr> <tr> <td height="23" colspan="2" style="font-family: Tahoma; font-size: 9pt" dir="rtl"> <p style="margin-top: 0; margin-bottom: 0" align="right" dir="rtl"> <font face="Tahoma">&nbsp;<span lang="fa">F81'* 4E':</span></font></td> </tr> <tr> <td height="23" colspan="2" style="font-family: Tahoma; font-size: 9pt" dir="rtl"> <p align="center" dir="rtl"> <font face="Tahoma"> <textarea rows="4" name="Comments" cols="49" style="font-family: Tahoma; font-size: 8pt"></textarea></font></td> </tr> </table> </div> </center> </div> <p style="margin-top: 0; margin-bottom: 0" align="right" dir="rtl"> <input type="submit" value="'13'D '7D'9'*" style="font-family: Tahoma; font-size: 8pt"> <input type="reset" value="~'© ©1/F " style="font-family: Tahoma; font-size: 8pt"> </form> <p dir="rtl" style="text-align: center">&nbsp;</td> <td width="5" background="../images/center_right.gif" height="18" dir="rtl">&nbsp;</td> <td width="5" height="18" dir="rtl"></td> </tr> </table> <table border="0" style="border-collapse: collapse" width="100%" height="1"> <tr> <td width="5" height="1"></td> <td background="../images/downcenter_left.gif" width="12" height="1">&nbsp;</td> <td background="../images/downcenter_center.gif" height="1">&nbsp;</td> <td background="../images/downcenter_right.gif" width="25" height="1">&nbsp;</td> <td width="7" height="1"></td> </tr> </table> </td> </tr> </table> </td> <td valign="top" width="163" background="../images/line-right.gif" height="429"> <table border="0" style="border-collapse: collapse" width="100%"> <tr> <td> <hr></td> </tr> </table> <table border="0" style="border-collapse: collapse" width="100%"> <tr> <td width="13">&nbsp;</td> <td> <table border="1" style="border-collapse: collapse" width="100%" bordercolor="#3C9DFF"> <tr> <td background="../images/back1button.gif"> <p align="center" style="margin-top: 0; margin-bottom: 0" dynamicanimation="fpAnimformatRolloverFP1" fprolloverstyle="background-color: #00FFFF" onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2" dir="rtl"> <span lang="fa"><font size="2"> <a href="../Damghan/Main.htm" style="text-decoration: none"> <font color="#0000FF">/'E:'F</font></a></font></span></td> </tr> </table> </td> <td width="13">&nbsp;</td> </tr> <tr> <td width="13">&nbsp;</td> <td> <table border="1" style="border-collapse: collapse" width="100%" bordercolor="#3C9DFF"> <tr> <td background="../images/back1button.gif"> <p align="center" dir="rtl" dynamicanimation="fpAnimformatRolloverFP1" fprolloverstyle="background-color: #00FFFF" onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2"> <font size="2"> <a href="../monasebatha/mahdaviyat.htm" style="text-decoration: none"> <font color="#0000FF">A1GF¯ EG/HJ*</font></a></font></p> </td> </tr> </table> </td> <td width="13">&nbsp;</td> </tr> <tr> <td width="13">&nbsp;</td> <td> <table border="1" style="border-collapse: collapse" width="100%" bordercolor="#3C9DFF"> <tr> <td background="../images/back1button.gif"> <p align="center" dynamicanimation="fpAnimformatRolloverFP1" fprolloverstyle="background-color: #00FFFF" onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2" dir="rtl"> <span lang="fa"> <a style="text-decoration: none" href="../rahbari/main.htm"> <font size="2" color="#0000FF">/1 E-61 HD'Ì*</font></a></span></p> </td> </tr> </table> </td> <td width="13">&nbsp;</td> </tr> <tr> <td width="13">&nbsp;</td> <td> <table border="1" style="border-collapse: collapse" width="100%" bordercolor="#3C9DFF" height="9"> <tr> <td background="../images/back1button.gif" height="7"> <p align="center" dir="rtl" dynamicanimation="fpAnimformatRolloverFP1" fprolloverstyle="background-color: #00FFFF" onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2"> <font size="2" color="#0000FF"> <a style="text-decoration: none" href="../Damghan/Main-tarikh.htm"> <font color="#0000FF">*'1Ì. /'E:'F</font></a></font><font color="#0000FF"></a></font></p> </td> </tr> </table> </td> <td width="13">&nbsp;</td> </tr> <tr> <td width="13">&nbsp;</td> <td> <table border="1" style="border-collapse: collapse" width="100%" bordercolor="#3C9DFF"> <tr> <td background="../images/back1button.gif"> <p align="center" dynamicanimation="fpAnimformatRolloverFP1" fprolloverstyle="background-color: #66FFFF" onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2" dir="rtl"> <font size="2"> <a href="../asnad/asnad%20-%20main.htm" style="text-decoration: none"> <font color="#0000FF">'3F'/ *'1J.Ì</font></a></font></p> </td> </tr> </table> </td> <td width="13">&nbsp;</td> </tr> <tr> <td width="13">&nbsp;</td> <td> <table border="1" style="border-collapse: collapse" width="101%" bordercolor="#3C9DFF"> <tr> <td background="../images/back1button.gif"> <p align="center" dir="rtl"> <span lang="fa"> <font size="2" color="#0000FF"> <a style="text-decoration: none" href="../Damghan/Main-tarikhi.htm"> <font color="#0000FF">'E'©F *'1J.Ì</font></a></font></span></td> </tr> </table> </td> <td width="13">&nbsp;</td> </tr> <tr> <td width="13">&nbsp;</td> <td> <table border="1" style="border-collapse: collapse" width="100%" background="../images/back1button.gif" bordercolor="#3C9DFF"> <tr> <td> <p align="center" dir="rtl" dynamicanimation="fpAnimformatRolloverFP1" fprolloverstyle="background-color: #00FFFF" onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2"> <span lang="fa"> <a style="text-decoration: none" href="../Damghan/Main-mazhabi.htm"> <font size="2" color="#0000FF"> 'E'©F E0G(Ì</font></a></span></p> </td> </tr> </table> </td> <td width="13">&nbsp;</td> </tr> <tr> <td width="13">&nbsp;</td> <td> <table border="1" style="border-collapse: collapse" width="100%" background="../images/back1button.gif" bordercolor="#3C9DFF"> <tr> <td> <p align="center" dynamicanimation="fpAnimformatRolloverFP1" fprolloverstyle="background-color: #00FFFF" onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2" dir="rtl"> <font size="2" color="#0000FF"> <a style="text-decoration: none" href="../Damghan/Main-goyesh.htm"> <font color="#0000FF">¯HÌ4 /'E:'FÌ</font></a></font><span lang="fa"><font size="2" color="#0000FF"><a style="text-decoration: none" href="../Damghan/Main-mazhabi.htm"><font color="#0000FF">&nbsp;</font></a></font></span></td> </tr> </table> </td> <td width="13">&nbsp;</td> </tr> <tr> <td width="13">&nbsp;</td> <td> <table border="1" style="border-collapse: collapse" width="100%" background="../images/back1button.gif" bordercolor="#3C9DFF"> <tr> <td> <p align="center" dir="rtl" dynamicanimation="fpAnimformatRolloverFP1" fprolloverstyle="background-color: #00FFFF" onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2"> <font color="#0000FF"> <span lang="fa"> </a></span> </font> <font size="2"> <a href="../Damghan/Main-rostaha.htm" style="text-decoration: none"><font color="#0000FF">4G1G' H 1H3*'G'</font></a></font></td> </tr> </table> </td> <td width="13">&nbsp;</td> </tr> <tr> <td width="13">&nbsp;</td> <td> <table border="1" style="border-collapse: collapse" width="100%" background="../images/back1button.gif" bordercolor="#3C9DFF"> <tr> <td> <p align="center" dynamicanimation="fpAnimformatRolloverFP1" fprolloverstyle="background-color: #00FFFF" onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2" dir="rtl"> <font size="2" color="#0000FF"> <a style="text-decoration: none" href="../Damghan/Main-goyesh.htm"> <span lang="en-us"> <font color="#0000FF">&nbsp;</font></span></a><span lang="fa"><a style="text-decoration: none" href="../Damghan/Main-toristi.htm"><font color="#0000FF">,'0(G G'Ì 7(Ì9Ì</font></a></span></font></td> </tr> </table> </td> <td width="13">&nbsp;</td> </tr> <tr> <td width="13">&nbsp;</td> <td> <table border="1" style="border-collapse: collapse" width="100%" background="../images/back1button.gif" bordercolor="#3C9DFF"> <tr> <td> <p align="center" dir="rtl" dynamicanimation="fpAnimformatRolloverFP1" fprolloverstyle="background-color: #00FFFF" onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2"> <a style="text-decoration: none" href="../mashahir/main.htm"> <font size="2" color="#0000FF">&nbsp;</font><a style="text-decoration: none" href="../Damghan/safarname%20damghan-main.htm"><font size="2" color="#0000FF">3A1F'EG G'Ì /'E:'F</font></a></td> </tr> </table> </td> <td width="13">&nbsp;</td> </tr> <tr> <td width="13">&nbsp;</td> <td> <table border="1" style="border-collapse: collapse" width="100%" background="../images/back1button.gif" bordercolor="#3C9DFF"> <tr> <td> <p align="center" dynamicanimation="fpAnimformatRolloverFP1" fprolloverstyle="background-color: #00FFFF" onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2" dir="rtl"> <span lang="fa"> <a href="../ozviyat/main1.htm" style="text-decoration: none"> <font size="2" color="#0000FF"> &nbsp;</font></a><font size="2" color="#0000FF"><a href="http://www.havairan.com/weather/Semnn/Dmghn" style="text-decoration: none"><font color="#0000FF">GH'4F'3Ì /'E:'F</font></a></font></span></td> </tr> </table> </td> <td width="13">&nbsp;</td> </tr> <tr> <td width="13">&nbsp;</td> <td> <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#3C9DFF" width="100%" bgcolor="#3C9DFF" background="../images/back1button.gif"> <tr> <td width="100%" bordercolor="#FFFFFF" bgcolor="#FFFFFF" background="../images/back1button.gif"> <p align="center" style="margin-top: 0; margin-bottom: 0" dir="rtl" dynamicanimation="fpAnimformatRolloverFP1" fprolloverstyle="background-color: #00FFFF" onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2"> <span lang="fa"> <a href="../fallyatha/moghadame.htm" style="text-decoration: none"> <font size="2" color="#0000FF">&nbsp;</font></a></span><font size="2" color="#0000FF"></a><a style="text-decoration: none" href="../nashriyeh/nashriye-%20arshiv.htm"><font color="#0000FF">.(1F'EG F¯'G ,H'F</font></a></font></td> </tr> </table> </td> <td width="13">&nbsp;</td> </tr> <tr> <td width="13">&nbsp;</td> <td> <table border="1" style="border-collapse: collapse" width="100%" background="../images/back1button.gif" bordercolor="#3C9DFF"> <tr> <td> <p align="center" dir="ltr" dynamicanimation="fpAnimformatRolloverFP1" fprolloverstyle="background-color: #00FFFF" onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2"> <font size="2" color="#0000FF"> <a style="text-decoration: none" href="../imam%20sajad/darolaytam.htm"> <font color="#0000FF">/'1'D'Ì*'E</font></a></font><font color="#0000FF"></a></font><a style="text-decoration: none" href="../imam%20sajad/darolaytam.htm"><font size="2" color="#0000FF"> 'E'E 3,'/</font></a></td> </tr> </table> </td> <td width="13">&nbsp;</td> </tr> <tr> <td width="13">&nbsp;</td> <td> <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#3C9DFF" width="100%" bgcolor="#3C9DFF" background="../images/back1button.gif"> <tr> <td width="100%" bordercolor="#FFFFFF" bgcolor="#FFFFFF" background="../images/back1button.gif"> <p align="center" dir="rtl" dynamicanimation="fpAnimformatRolloverFP1" fprolloverstyle="background-color: #00FFFF" onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2"> <span lang="fa"> <font size="2" color="#0000FF"> <a style="text-decoration: none" href="../matbooat/web%20va%20weblog.htm"> <font color="#0000FF">~ÌHF/G'</font></a></font><a style="text-decoration: none" href="../matbooat/web%20va%20weblog.htm"><font size="2" color="#0000FF">&nbsp;</font></a></span></p> </td> </tr> </table> </td> <td width="13">&nbsp;</td> </tr> </table> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="4"> <tr> <td width="100%" height="4"> <p align="center"> </td> </tr> </table> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="19"> <tr> <td width="100%" background="../images/backheadcenter.gif" dir="rtl" valign="top" height="19"> <p style="margin-top: 0; margin-bottom: 0"> <font size="2" color="#FFFFFF">&gt; *(DJ:'*</font></td> </tr> </table> <table border="0" style="border-collapse: collapse" width="100%" height="35"> <tr> <td> <p align="center"> <object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="158" height="44"> <param name="movie" value="../images/javaninter.swf"> <param name="quality" value="High"> <param name="_cx" value="4180"> <param name="_cy" value="1164"> <param name="FlashVars" value> <param name="Src" value="../images/javaninter.swf"> <param name="WMode" value="Window"> <param name="Play" value="-1"> <param name="Loop" value="-1"> <param name="SAlign" value> <param name="Menu" value="-1"> <param name="Base" value> <param name="AllowScriptAccess" value="always"> <param name="Scale" value="ShowAll"> <param name="DeviceFont" value="0"> <param name="EmbedMovie" value="0"> <param name="BGColor" value> <param name="SWRemote" value> <param name="MovieData" value> <param name="SeamlessTabbing" value="1"> <embed src="../images/javaninter.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" width="158" height="44" quality="High"></object> </td> </tr> </table> <table border="0" style="border-collapse: collapse" width="100%"> <tr> <td><hr></td> </tr> </table> <table border="0" style="border-collapse: collapse" width="100%" height="32"> <tr> <td> <p align="center"> <object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj2" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="158" height="42"> <param name="movie" value="../images/shabahang.swf"> <param name="quality" value="High"> <param name="_cx" value="4180"> <param name="_cy" value="1111"> <param name="FlashVars" value> <param name="Src" value="../images/shabahang.swf"> <param name="WMode" value="Window"> <param name="Play" value="-1"> <param name="Loop" value="-1"> <param name="SAlign" value> <param name="Menu" value="-1"> <param name="Base" value> <param name="AllowScriptAccess" value="always"> <param name="Scale" value="ShowAll"> <param name="DeviceFont" value="0"> <param name="EmbedMovie" value="0"> <param name="BGColor" value> <param name="SWRemote" value> <param name="MovieData" value> <param name="SeamlessTabbing" value="1"> <embed src="../images/shabahang.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj2" width="158" height="42" quality="High"></object> </td> </tr> </table> <table border="0" style="border-collapse: collapse" width="100%"> <tr> <td><hr></td> </tr> </table> <table border="0" style="border-collapse: collapse" width="100%" height="15"> <tr> <td dir="rtl" valign="top"> <p align="center"> <font size="2" color="#006BD7">3A'14 *(DJ:'*:</font></td> </tr> <tr> <td dir="rtl" valign="top"> <p align="center"> <font size="2" color="#808080">5253699</font></td> </tr> <tr> <td dir="rtl" valign="top"> <hr></td> </tr> </table> <table border="0" cellpadding="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="42"> <tr> <td width="100%" height="42" dir="ltr" valign="top"> <table border="0" style="border-collapse: collapse" width="100%"> <tr> <td background="../images/backheadcenter.gif" dir="rtl" style="margin-top: 0; margin-bottom: 0"> <p align="right"> <font color="#FFFFFF" style="font-size: 8pt"> <span lang="en-us">&gt; </span>DJF©G'Ì E1(H7 (G 'JF 5A-G</font></td> </tr> </table> <table border="0" style="border-collapse: collapse" width="100%" height="2567"> <tr> <td height="14"> <p align="center" dir="rtl"></td> </tr> <tr> <td height="2564"> &nbsp;</td> </tr> <tr> <td height="2"> </td> </tr> <tr> <td height="24"> &nbsp;</td> </tr> <tr> <td height="2"> </td> </tr> <tr> <td height="2"> </td> </tr> <tr> <td height="2"> </td> </tr> <tr> <td align="center" dir="rtl" height="38"> &nbsp;<!-- Begin WebGozar.com Counter code --> <script type="text/javascript" language="javascript" src="http://www.webgozar.ir/c.aspx?Code=1530202&amp;t=counter" ></script> <noscript><a href="http://www.webgozar.com/counter/stats.aspx?code=1530202" target="_blank">"E'1</a></noscript> <!-- End WebGozar.com Counter code --></td> </tr> </table> </td> </tr> </table> </td> </tr> </table> </td> <td width="5" background="../images/line-right1.gif" height="1">&nbsp;</td> </tr> </table> </td> </tr> <tr> <td height="28" width="769" background="../images/line-down.gif"> <p align="center" style="margin-top: 2; margin-bottom: 0"> <font size="1" face="Arial">copy right © 2008<span lang="en-us">-</span>2012 <a style="text-decoration: none; " href="http://www.Tarikhaneh.com"> <font color="#FFFFFF">Tarikhaneh.com</font></a> all right reserved .all graphics copy right by<span lang="en-us"><a style="text-decoration: none" href="mailto:sitetarikhaneh@gmail.com"> <font color="#FFFFFF">Tarikhaneh</font></a></span></font></td> </tr> </table> </td> </tr> </table> </body> </html>