ÿþ<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 http-equiv="Content-Language" content="fa"> <meta name="GENERATOR" content="Microsoft FrontPage 5.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <meta http-equiv="Content-Type" content="text/html; charset=unicode"> <title> †F'F 3A1 ~Ì4 ¯1A* ©G 4'Ì/... @ '3*'/ -3ÌF E9DE /'E:'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="23"> <tr> <td width="5">&nbsp;</td> <td width="33" background="../images/lheadcenter.gif">&nbsp;</td> <td background="../images/backheadcenter.gif" dir="rtl" valign="top" style="font-family: Tahoma; font-size: 10pt"> <p align="right"><font color="#FFFFFF"> :: </font> <font color="#FFFFFF" size="2"> †F'F 3A1 ~Ì4 ¯1A* ©G 4'Ì/... @ '3*'/ -3ÌF E9DE /'E:'FÌ</font></td> <td width="4" background="../images/rheadcenter.gif">&nbsp;</td> <td width="7">&nbsp;</td> </tr> </table> <table border="0" style="border-collapse: collapse; text-align:justify" width="589" height="1"> <tr> <td width="4" height="1"></td> <td width="5" background="../images/center_left0.gif" height="1">&nbsp;</td> <td width="559" dir="rtl" valign="top" height="1" align="justify"> <p align="center"><b> <font size="2" color="#000080"> †F'F 3A1 ~Ì4 ¯1A* ©G 4'Ì/...</font></b></td> <td width="6" background="../images/center_right.gif" height="1">&nbsp;</td> <td width="5" height="1"></td> </tr> <tr> <td width="4" height="1"></td> <td width="5" background="../images/center_left0.gif" height="1">&nbsp;</td> <td width="559" dir="rtl" valign="top" height="1" align="justify"> </td> <td width="6" background="../images/center_right.gif" height="1">&nbsp;</td> <td width="5" height="1"></td> </tr> <tr> <td width="4" height="1"></td> <td width="5" background="../images/center_left0.gif" height="1">&nbsp;</td> <td width="559" dir="rtl" valign="top" height="1" align="justify"> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%;line-height:150%"><span lang="FA" style="line-height: 150%"> <font size="2">'5D4 '2 «FH1"('/ ./'» (H/ F'©,'Ì (Ì 8DE*  H'/Ì (H/'Ì 3A1 ©1/G  '2 "/E  4Ì+ H FH- H '(1'GÌE H '3E'9ÌD H... ¯01 ©1/G *' (.'FG 9DÌ H A'7EG (9) /1"E/G H B/E '2 312EÌF -,'2 A1'FG'/G  (Ì'('F /1 (Ì'('F B79 E1'-D ©1/G  /,DG H A1'* ~4* 31 ¯0'1/G  '2 «4'G †1':» 1.5* 1A*'1 Ì'A*G  5-1' (G 5-1' 312EÌF "A*'( 1' /1FH1/Ì/G *' (EHD/ H F4'! .HÌ4 H «-3F "('/» 13Ì/G H (1 ©F'1G ED© .H14Ì/ †HF †4EG 3'1Ì ~'© ,'1Ì 4/G  H /1 ,1Ì'F .HÌ4 7D( H7F E'DHA ©1/G *' (ED©H* ./'Ì 1'G Ì'A*G H 4'G/ (2E 4GH/ ¯1/Ì/G H '2 G1†G :Ì1 'H H'1GÌ/G.</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%;line-height:150%"><span lang="FA" style="line-height: 150%"> <font size="2">H D'(/ "F©G '2 «FH1"('/» ./'3* EHD/ H EF4'4 FÌ2 ('Ì/ «-3F "('/» ('Ì/  †G "E/G '2 ED© -3F 1' 1HÌ4 ¯'GÌ ,2 «-3F "('/» FÌ3* H F'E4 F4'F 1'G4 H 3Ì/ -3F 4'G†1':Ì FÌ© *#ED ©F. /Ì12E'FÌ (' GE (H/ÌE...</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%;line-height:150%"><span lang="FA" style="line-height: 150%"> <font size="2">¯E'FE FEÌ1A*  ('ÌF 2H/Ì A5D A1'B ":'2 4H/ H FEÌ ~F/'4*E /1 'ÌF F2/Ì©Ì G' ('1 3A1 (F//. EÌ ¯A*: «HB*Ì *G /DE 1' EÌ F¯1E Ğ "12HÌÌ /1 "F FEÌ (ÌFE  E¯1 "*4/'FÌ»! FEÌ /'F3*E. (G F'¯G'F †G 4HBÌ GEG H,H/4 1' ~1 3'.*G (H/. ~Ì4*1 '2 'ÌF /Ì/G (H/E4  (4HB /1 ©F'1G "*4/'F F43*G  E-H 1B5 49DG G' ¯4*G! -6H1 H -61* /̯1'F 1' A1'EH4 3'.*G FEÌ/'F3*E: «1B5Ì †FÌF EÌ'FG EÌ/'F4 "12H3*». *' /Ì1¯'G F43*ÌE '2 G1 /1 3.F 1'F/ÌE. E9DHE (H/ -1AÌ /1 EÌ'FG '3* H 'ÌF GEG (G'FG  'E' F'¯A*FÌ ©G: H1'Ì -/ *B/Ì1 '3* 41- "12HEF/Ì. '2 "F ~3 /̯1 F/Ì/E4 *' (/'F 4(  ©G *A3Ì1 "*4 H "*4/'F H ©D'E ~H4Ì/G H ~FG'F 1' '2 .(1 "F /H3* /1Ì'A*E «9ÌF "*4 4/G (H/» Ì9FÌ GEG FH1! 3.*E (H/ H 59( H GFH2E /4H'1  /D F¯1'F H †4E ¯1Ì'F  FG '2 "F 1HÌ ©G EB'E B1( Ì'A*G (H/ H '2 "F 8DE* *F (FH1 'EFÌ* -B 13*G (D (,G* A1B* H G,1'F.</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align: center; text-kashida: 0%; line-height: 150%"> <span lang="FA" style="line-height: 150%"> <font size="2">2 A1'B †HF FF'DE EF /D 4©3*G †HF FÌ</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align: center; text-kashida: 0%; line-height: 150%"> <span lang="FA" style="line-height: 150%"> <font size="2">©G (3H.* (F/ (F/E 2-1'1* ,/'ÌÌ<![if !supportLineBreakNewLine]><![endif]></font></span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%;line-height:150%"><span lang="FA" style="line-height: 150%"> <font size="2">©FHF E1+ÌG FEÌ 31'ÌE H ©1'E* FEÌ 3'2E ©G FG E1/G EÌ ~F/'1E4 H FG (* EÌ 3'2E4 D©F (1 3(ÌD 9(1* H GE (G *3DÌ* /D (G .'71 .H/ H /̯1'F 3.FÌ †F/ EÌ ¯HÌE ©G: Ì'/ Ì'1'F Ì'1 1' EÌEHF (H/. 3'DG' ~Ì4 HB*Ì 7D(G FH .'3*G (H/ /1 BE  14*G 'DA* EÌ'FE'F (1B1'1 4/ H 9G/ EH/* '3*H'1 ~3 4('FÌ /1'2 .'DÌ ':Ì'1 A1'GE "E/ÌE H F1/ E-(* ('.*ÌE H B5G /H3*Ì H EH'F3* ~1/'.*ÌE  (Ì ,F¯Ì H 3*Ì2Ì  ©G -'DÌE'F F(H/ H'1+Ì H *EF'Ì :Ì1Ì H '5D'K -3F 'H /1 'ÌF (H/: 3H/'Ì E'DÌ F/'4*  .Ì'D ,'GÌ /1 31 FEÌ ~1H1'F/. GE'F (H/ ©G EÌ FEH/  (Ì *9'1AÌ H *©DAÌ. /1 3A1 H -61 'Ì'E .H4Ì H 1H2¯'1 F'.H4Ì  /1 2Ì 7D(¯Ì  H (1 E3F/ /HD* E1/Ì (̯'FG '2 1F¯G' H FÌ1F¯G'  (/H1 '2 95(Ì* G' H ,G'D* G'. -6H14 '2 .H/ (̯'FG '* FEÌ FEH/ H H,H/4 1F, .'71* FEÌ A2H/  /1"E/F  FÌ'2 (G '9D'E B(DÌ F/'4*  (Ì ©(©(G H /(/(G (H/  3'/G H (Ì ~Ì1'ÌG  E5'-(* H E,'D3*4 .'DÌ '2 *5F9 H *©DA H :FÌE* (G G1HB*  4( Ì' 1H2 FG .H/ 1' /1 E90H1 ¯1A*'1 EÌ3'.* FG *H 1' (G 90'(Ì 'DE 'F¯Ì2 /†'1  ©G F',F3 F(H/ H «1H- 1' 5-(* F',F3 90'(Ì3* 'DÌE.» </font></span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%;line-height:150%"><span lang="FA" style="line-height: 150%"> <font size="2">(/HF "F©G ©3H* EFB4 1Ì' /1 (1 ©F/ H (1 EA14 EFBH4 21B F4ÌF/ Ì' (1 E3F/ E:4H4 2G/ *©ÌG 2F/  Я'G .'DÌ '2 ./'Ì F(H/  GEH'1G /D (' 'H /'4* H 1H (G 3HÌ 'H H *H 1' FÌ2 G1 ©G (H/Ì (Ì '/'&Ì FA1* 'F¯Ì2 (1'G EÌ .H'F/ H (' .H/ GE1'G EÌ .H'3*. G1¯2 5/'9 FEÌ /'/ H .H/ FÌ2 'GD 'ÌF H'B9G F(H/  "1'E H E*ÌF  "F†G ~3F/Ì/G (H/ EÌ ©1/ H "F†G EÌ ~3F/Ì/ (,'Ì EÌ'H1/ H 'ÌF GEG (1 B'9/G «-3F» H E9Ì'1 5/B H -B GEÌF (H/ ©G «-3F» (H/ H '2 «-3F "('/» ./'Ì *('1© H *9'DÌ. 3.F ©H*'G «†F'F 2Ì3* ©G ('Ì/  H †F'F 3A1 ~Ì4 ¯1A* ©G 4'Ì/  ./'Ì4 (EFQ ©1E EB'E H E1*(* E-3F'F ©1'E* ©F'/ 'F 4'! '...» </font></span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%;line-height:150%"><span lang="FA" style="line-height: 150%"> <font size="2">92Ì2'! *H /'FÌ H EF H GE¯'F /'FF/ ©G 5/B ©D'E -B *9'DÌ 4#FG (1 ©3Ì ~H4Ì/G FÌ3*. «'ÌFE' *©HFH' Ì/1©E 'DEH* HDH ©F*E AÌ (1H, E4Ì/G» 1A*F E-*HE '3* H †¯HFG 1A*F E3'DG. E1¯ "ÌF/FÌ '3* H ',D "E/FÌ H 'ÌF E9'EDG /1 ('2'1 ,G'F 4/FÌ. «('Ì 5H1) 4'!» FG'D *'2G 13*G 1' 1HÌ /1 ©H†Ì/F '3* H ¯Ì'G 3ÌFG '2 .'© (1¯1A*G 1' 31.H4Ì/F Ì9FÌ «2'ÌF/G» (F'†'1 EÌ1F/G '3* H "ÌF/G (D'(/ «1HF/G». H /'FÌ /1E'FG'  (3Ì'1Ì  /1/ '3*  ¯1Ì.*F G'  «E1¯».</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%;line-height:150%"><span lang="FA" style="line-height: 150%"> <font size="2">4FÌ/G 'Ì -©'Ì* "F ¯1Ì2 ~'Ì 1' ©G '2 E1¯ *' (G EGD©G ¯1Ì.*! H B5G "F 21¯1 3E1BF/Ì 1' /1 ©D'E EHDHÌ (1G):</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align: center; text-kashida: 0%; line-height: 150%"> <span lang="FA" style="line-height: 150%"> <font size="2">/1 .Ì'D4 ED© H 92 H 31H1Ì</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align: center; text-kashida: 0%; line-height: 150%"> <span lang="FA" style="line-height: 150%"> <font size="2">¯A* 921'&ÌD 1H  "1Ì  (1Ì</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align: center; text-kashida: 0%; line-height: 150%"> <span lang="FA" style="line-height: 150%"> <font size="2">'Ì 4/G 'F/1 3A1 (' 5/16'</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align: center; text-kashida: 0%; line-height: 150%"> <span lang="FA" style="line-height: 150%"> <font size="2">.H/ (~'Ì .HÌ4 *' 3H! 'DB6'</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%;line-height:150%"><span lang="FA" style="line-height: 150%"> <font size="2">(G (/'F .'71 ©G 4(* ©H*'G 4H/ H .H'(* 3F¯ÌF  Ì' (F'/'F3*G .13F/ ¯1/Ì '2 E1¯ GE3'ÌG /1 7E9 "F©G «13Ì/G (H/ (D'&Ì HDÌ (.Ì1 ¯04*» EH'F9 E9/HE ¯4* H 41'Ì7 EH,H/ *'(*'2Ì (G1 EÌ/'F ©G FG 4'Ì3*G '3* H (G1 4'19 ©G FG ('Ì3*G  2Ì1': </font></span></p> <p class="MsoNormal" dir="RTL" style="text-align: center; text-kashida: 0%; line-height: 150%"> <span lang="FA" style="line-height: 150%"> <font size="2">¯1†G /ÌH'1 'A©F/ 3'ÌG /1'2</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align: center; text-kashida: 0%; line-height: 150%"> <span lang="FA" style="line-height: 150%"> <font size="2">('2¯1// 3HÌ 'H "F 3'ÌG ('2</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align: center; text-kashida: 0%; line-height: 150%"> <span lang="FA" style="line-height: 150%"> <font size="2">(1 EF '3* 'E1H2 H A1/'  (1 HÌ '3*</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align: center; text-kashida: 0%; line-height: 150%"> <span lang="FA" style="line-height: 150%"> <font size="2">.HF †HF EF ©3 †FÌF 6'Ì9 ©Ì '3*</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align: center; text-kashida: 0%; line-height: 150%"> <span lang="FA" style="line-height: 150%"> <font size="2">'ÌF ,G'F ©HG '3* H A9D E' F/'</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align: center; text-kashida: 0%; line-height: 150%"> <span lang="FA" style="line-height: 150%"> <font size="2">.H/ F/' 1' 3HÌ E' "Ì/ 5/'</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%;line-height:150%"><span lang="FA" style="line-height: 150%"> <font size="2">2H/'  ©G 'Ì'E EF H *H FÌ2 3~1Ì ¯1// H FH(*E'F (".1 13/  ~3 HB* .H4E'F F'.H4 4H/  H B5G "E/ H 4/E'F (1 31 ©HÌ H (12F FBD E-AD G1 E1/ H 2F Ì9FÌ «.1E'F (EÌ1/ H ('1E'F (1G¯0'1 (E'F/» "F¯'G /H3*'F (7E9 ¯1/ "E/G 1' '+1 F('4/ H F'5-'F (A1Ì( 3H¯F/ .H1/G 1' .(1 FÌ'Ì/. ./' 1'  ('2"  ~Ì4 '2 "F©G A15* :'Ì* 4H/ :E ©'1 .H/ .H1ÌE ©G 9'DE 1' FEÌ (ÌFE (B'&Ì H B(D '2 "F©G GF¯'E (¯01/ .H/ 'F/Ì4G 2'/ H 1'-DG ©FÌE ©G Ì'1'F EH'AB GEG '2 /3* 4/F/ H A1/' FG F/'E* 1' 3H/Ì '3* H FG ~4ÌE'FÌ 1' A'Ì/G 'Ì. ('/' ©G (1-E*4 92Q 4#FG '¯1 "DH/G .(+ÌE  ~'© 4HÌE H '¯1 "EÌ.*G ©/H1*  E5AQ'. «'F '... Ì-( 'DE-3FÌF» H «Ì-( 'DE*7G1ÌF»</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align: center; text-kashida: 0%; line-height: 150%"> <span lang="FA" style="line-height: 150%"> <font size="2">(Ì' *' B/1 Ì©/̯1 (/'FÌE</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align: center; text-kashida: 0%; line-height: 150%"> <span lang="FA" style="line-height: 150%"> <font size="2">©G *' F'¯G 2 GE/̯1 FE'FÌE</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align: center; text-kashida: 0%; line-height: 150%"> <span lang="FA" style="line-height: 150%"> <font size="2">©1ÌE'F ,'F A/'Ì /H3* ©1/F/</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align: center; text-kashida: 0%; line-height: 150%"> <span lang="FA" style="line-height: 150%"> <font size="2">3¯Ì (¯0'1 E' GE E1/E'FÌE</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%;line-height:150%"><span lang="FA" style="line-height: 150%"> <font size="2">«3Ì/ -3F» ©G ./'Ì4 (1-E* H'39G .HÌ4 E31H1 ©F'/  1A*  †F'F©G E1/'F 1HF/ «(~'Ì 16' *' -3F 'DB6'» ©G FG ¯1A*'1 «(F/ EB'E» (H/ H FG (3*G «2F/'F E'D» H FG '3Ì1 /1 3Ì'G†'D «A.1 H '.*Ì'D». «'F '... D'Ì-( ©D E.*'D A.H1». H 'ÌF FG (G ¯2'AG H F'1H'3*  ©G '¯1 †FÌF (H/  HB*Ì '2 -61* 92Ì2  1.5* /Ì/'1 7D(Ì/ H '2 -61* 92* 7D( ('1 ©1/  -B4 ,DQ* 98E*G (3'F B1"F E,Ì/ FEÌ A1EH/: '/.DH' 'D,FG (E' ©F*E *9EDHF ("Ì'* 29-30-31 3H1G 41ÌAG F-D) (D E'ÌG EÌ ¯4* H '5D "Ì*: ... '+'BD*E 'DÌ 'D'16 ... ("ÌG 37 3H1G E('1©G *H(G) 1'  ©G H'E'F/¯'F /1 *ÌG 6D'D* GE'F 'A2HF 7D('F "2EF/F/  .H'GF/¯'F 3Ì1 H 9/3  9FH'F ©FF/¯'F «Ì' EH3Ì DF F5(1 9DÌ 79'E H'-/» Ì9FÌ '2 H-/* (*A1BG ¯1Ì2F/¯'F H '2 *H-Ì/ (41© /1 "HÌ.*¯'F  (*A'H* F'E H EB'E. H 13F/¯'F (EB'E H5D  H H'5D'F (E1*(* B1(  5'(1'F H 1'6Ì'F H (-B '2 :Ì1 'H .4FH/ 4HF/¯'F H 'E1 .HÌ4 (5/B (-61* -B H'¯0'1F/¯'F H '2 BÌ/ F'E H F'F /1 ¯01F/¯'F. (1'/1'! FÌ© (F¯1  EF H *H '2 ©/'E B(ÌDG 'ÌE  E.'7('F «BDF' 'G(7H' E51 '...»</font></span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%;line-height:150%"><span lang="FA" style="line-height: 150%"> <font size="2">Ì' FH'.*¯'F: «'1,9Ì 'DÌ 1(©...» 31': E,D3 "F'F 1' /'1Ì H F4'F E-AD 'ÌF'F 1' EÌ 4F'3Ì  *H(Ì. "F'F: «... E' :1© (1(© 'D©1ÌE» H *HBÌ- 'ÌF'F «... A*('1© '... '-3F 'D.'DBÌF.» ~3 (9(1* FG (G EA'.1* 0©1Ì "1E '2 "F 3A1 ©1/G H «3Ì/ -3F» .DBÌ 5'D- '2 *('1 4GÌ/'F H A12F/Ì 5'/B '2 7'ÌAG 92Ì2'F ©G (BHD 4Ì. 9DÌG 'D1-EG «/1 ©,'HG 'FÌ3 (H/ H /1 -,1G ,DÌ3» 4'Ì/ ©G E1' H *H 1' (Ì/'1Ì 'A2'Ì/ H '2 †F¯ /ÌH H // .H/.H'GÌ (1G'F/  Ì'/4 (.Ì1 ('/. '¯1 †G /D4 '2 :E 'Ì'E .HF (H/  †G1G .F/'F (H/ H ¯1†G *F4 '2 61( *'2Ì'FG /HF'F F'3H1  /3*4 (¯1EÌ E-(* FH'2F/G. /1 E,D3 /H3*'F .'69 (H/ H /1 ,E9 :1Ì('F .'49 FG F1/ F.H* H F'EH3 ('2F/G H '2 ('/ :1H1 "©F/G  -1E* ~Ì1'F H '-*1'E ,H'F'F F¯'G/'1F/G H .H'GF/G 1' '2 /1 .HÌ4 (G BG1 H :D(G FG 1E'FF/G. H FG /1 915G ,G'D* F'(4'Ì3* *'2F/G. /1 :Ì(* H /1 -6H1 Ì©1HÌ (H/ /1 8'G1 H ('7F Ì© *HÌ H (' *H H :Ì1 *H Ì© ¯HÌ  1'-* .H/ H 1F, /̯1'F 1' FG 7'D( (H/ H (1 GH'Ì FA3 :'D(. /1 7D( EB'E H EF2D* FG (1 .1 4Ì7'F 3H'1 (H/ H FG /1Ì'A* G1 †G GH' 7D(/ F'(©'1. '2 "EH.*F FÌ'3'ÌF/G (H/ '2 "EH24 /1Ì: FH12F/G. '2 'GD 1Ì' H EA'.1* (-3( Ì' (G F3( /H1 H '2 G1†G FG (1 EÌ2'F H E9Ì'1 -B 9H1  '2 /H3*'F ((G'FG B79 ~ÌHF/ F'©FF/G (H/ H ÌH3A E51Ì (G 21 F'31G F'A1H4F/G  -/ .HÌ4 H -BHB /̯1'F 1' 4F'3F/G (H/ H (1 *H3F *Ì2~'Ì .4E D¯'E 5(1 H -DE 'A©FF/G. "F†G FEÌ/'F3* FE̯A* H "F†G EÌ /'F3* (G "( ©0( FEÌ 43*. '2 ~F'G .DB (-5F -5ÌF ./'Ì *9'DÌ ¯1Ì2F/G (H/ H /1 ~F'G -61*4 (3©ÌFG /D "1EF/G. (' .5E ./'Ì ,D ,D'DG (G 3*Ì2 (H/ H (' /H3*'F 'H (HA' H ~1GÌ2. -BHB 'DGÌ (G ©E (3Ì'1 /1 .'714 98ÌE (H/ H 'Ì2/ EF'F GEH'1G /1 /D4 1-ÌE. ('*©Q'! ~1H1F/G '2 F¯'G/'1F/G (Ì FÌ'2 (H/ H /1 7D( 16'Ì -61*4 (' 3H2 /1HF GE3'2. /1 9ÌF AB1 *H'F¯1 (H/ (' ©E'D *H'F¯1Ì ABÌ1 H †G (3Ì'1 /1/31 /GE ©G «-3F» (H/ D'(D «3Ì/ -3F». H (1'/1'  /'FÌ ©G 'ÌF GEG '2 .5D* ©1ÌE'F '3* FG '2 .HÌ (/ D&ÌE'F  ©G EB1('F 'H ,DQ H 9D' (G FÌ'2 -61*4 '2 :Ì1 (Ì FÌ'2F/ H (G (F/¯Ì ./'HF/Ì4 '2 (F/ 9(H/Ì* .DB 13*G  ~3 †G 9,( '¯1 EB(HD 'A*F/ H 1.5* /Ì/'1 Ì'(F/ ©G (G4* E4*'B 'ÌF'F '3* FG 'ÌF'F E4*'B (G4*. «7H(Ì DGE H -3F E"(» 4GÌ/'F 4'G/ 1' H 4'G/'F 4GÌ/ 1' (1 4'. 7H(Ì "1'EÌ/G  '2 ©H+1 -B 3Ì1'( ¯4*G H /1 *3FÌE  *F 43*G H /1 GH'Ì ©HÌ 'H A'1: '2 .HÌ4 H (̯'FG ¯4*G ©G FG (̯'F¯Ì /'F3*G H FG :Ì1Ì*Ì Ì'A*G GEG "4F' /1 "4F' ¯4*G. </font></span></p> <p class="MsoNormal" dir="RTL" style="text-align:justify;text-justify:kashida; text-kashida:0%;line-height:150%"><span lang="FA" style="line-height: 150%"> <font size="2">'Ì ('1 ./'Ì (1-E* H ©1E .HÌ4 (1'/1'F E' 1' H (*5/B "F'F E' 1'  '2 .HA H .71 EG'D© (1G'F H (1-E* H 1'A* (B1( -61** ('213'F  ©G: </font></span> </p> <p class="MsoNormal" dir="RTL" style="line-height:150%"> <span lang="FA" style="line-height: 150%"> <font size="2">/'E 3.* '3* E¯1 Ì'1 4H/ D7A ./'Ì<br> H1FG "/E F(1/ 51AG 24Ì7'F 1,ÌE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font></span> </td> <td width="6" background="../images/center_right.gif" height="1">&nbsp;</td> <td width="5" height="1"></td> </tr> <tr> <td width="4" height="1"></td> <td width="5" background="../images/center_left0.gif" height="1">&nbsp;</td> <td width="559" dir="rtl" valign="top" height="1" align="center"> <b><font size="2" color="#800000">'3*'/ -3ÌF E9DE /'E:'FÌ</font></b></td> <td width="6" background="../images/center_right.gif" height="1">&nbsp;</td> <td width="5" height="1"></td> </tr> <tr> <td width="4" height="1"></td> <td width="5" background="../images/center_left0.gif" height="1">&nbsp;</td> <td width="559" dir="rtl" valign="top" height="1" align="center"> </td> <td width="6" background="../images/center_right.gif" height="1">&nbsp;</td> <td width="5" height="1"></td> </tr> <tr> <td width="4" height="73">&nbsp;</td> <td width="5" background="../images/center_left0.gif" height="73">&nbsp;</td> <td width="559" dir="rtl" valign="top" height="72"> <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">&nbsp;</td> <td width="6" background="../images/center_right.gif" height="72" dir="rtl">&nbsp;</td> <td width="5" height="72" dir="rtl"></td> </tr> <tr> <td width="4" height="19">&nbsp;</td> <td width="5" background="../images/center_left0.gif" height="19">&nbsp;</td> <td width="559" dir="rtl" valign="top" height="19" align="justify"> <p align="center"> <a href="shahid1.htm" style="text-decoration: none; font-weight: 700"> <font size="2" color="#008000">AG13* E7'D(</font></a></td> <td width="6" background="../images/center_right.gif" height="19">&nbsp;</td> <td width="5" height="19">&nbsp;</td> </tr> <tr> <td width="4" height="19">&nbsp;</td> <td width="5" background="../images/center_left0.gif" height="19">&nbsp;</td> <td width="559" dir="rtl" valign="top" height="19" align="justify"> <p align="center"><span lang="fa"> <font color="#FF0000" size="2"> <a style="text-decoration: none; font-weight: 700" href="../Index_F.htm">('2¯4*</a></font></span></td> <td width="6" background="../images/center_right.gif" height="19">&nbsp;</td> <td width="5" height="19">&nbsp;</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">52<span lang="en-us">53699</span></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="2595"> <tr> <td height="2"> </td> </tr> <tr> <td height="1"> </td> </tr> <tr> <td bgcolor="#CCFFFF" height="23" align="center"> <table border="1" cellspacing="1" bordercolor="#66CCFF" width="90%"> <tr> <td width="100%" bgcolor="#66FFFF"> <p align="center"><font size="2"> <a href="../akhbare%20damghan/main-ejtemai.htm" style="text-decoration: none"> '.('1 ',*E'9&#1740; /'E:'F</a></font></td> </tr> </table> </td> </tr> <tr> <td bgcolor="#CCFFFF" height="23" align="center"> <table border="1" cellspacing="1" bordercolor="#66CCFF" width="90%"> <tr> <td width="100%" bgcolor="#66FFFF"> <p align="center" dir="rtl"> <font size="2"> <a href="../akhbare%20damghan/main-farhangi87.htm" style="text-decoration: none"> '.('1 A1GF¯&#1740; /'E:'F</a></font></td> </tr> </table> </td> </tr> <tr> <td bgcolor="#CCFFFF" height="23" align="center"> <table border="1" cellspacing="1" bordercolor="#66CCFF" width="90%"> <tr> <td width="100%" bgcolor="#66FFFF"> <p align="center" dir="rtl"> <font size="2"> <a href="../akhbare%20damghan/main-elmi.htm" style="text-decoration: none"> '.('1 9DE&#1740; /'E:'F</a></font></td> </tr> </table> </td> </tr> <tr> <td bgcolor="#CCFFFF" height="23" align="center"> <table border="1" cellspacing="1" bordercolor="#66CCFF" width="90%"> <tr> <td width="100%" bgcolor="#66FFFF"> <p align="center" dir="rtl"><font size="2"> <a href="../akhbare%20damghan/main-havades.htm" style="text-decoration: none">'.('1 -H'/+ /'E:'F</a></font></td> </tr> </table> </td> </tr> <tr> <td height="1"> <p dir="rtl" align="center"></td> </tr> <tr> <td height="1"> <p align="center"></td> </tr> <tr> <td height="1"> </td> </tr> <tr> <td height="1"> </td> </tr> <tr> <td height="1"> </td> </tr> <tr> <td height="1"> </td> </tr> <tr> <td height="1"> </td> </tr> <tr> <td height="1"> </td> </tr> <tr> <td height="60"> </td> </tr> <tr> <td height="2774"> </td> </tr> <tr> <td height="1"> </td> </tr> <tr> <td height="1"> </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 href="file:///G:/my%20new%20document/My%20Webs/INDEX.HTM" style="text-decoration: none; "> <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>