ÿþ<html> <head> <meta name="key words" content="('51Ì,/'E:'F,BG'(Ì,1'G2F,EHDH/.'FG,5Ì/"('/,E'Ì'F"> <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>"4F'ÌÌ (' 712 ~.* †G'1 :0'Ì .H4E2G H E.5H5 /'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> <body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" style="font-family: Tahoma; font-size: 10pt" link="#787485" vlink="#787485" alink="#787485"> <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" width="100%" id="AutoNumber1"> <tr> <td width="100%" align="center"> <table border="0" cellspacing="1" width="65%" id="AutoNumber2"> <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="mailto:info@tarikhaneh.com"><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"> ::<span style="font-size: 10.0pt; font-family: Tahoma"> "4F'ÌÌ (' 712 ~.* †G'1 :0'Ì </span> .H4E2G H E.5H5 /'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="5" height="1"></td> <td width="4" background="../images/center_left0.gif" height="1">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="1" align="justify" bgcolor="#FFFFCC"> <p align="center"><b> <font size="2" color="#008000">3(2Ì ~DHÌ /'E:'FÌ</font></b></td> <td width="5" background="../images/center_right.gif" height="1">&nbsp;</td> <td width="5" height="1"></td> </tr> <tr> <td width="5" height="1" bgcolor="#FFFFFF"></td> <td width="4" background="../images/center_left0.gif" height="1" bgcolor="#FFFFFF">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="1" align="justify" bgcolor="#FFFFFF"> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <span lang="AR-SA"> <font size="2" color="#800000">EH'/ D'2E</font></span><span dir="LTR"><font size="2"><br> </font></span><span lang="AR-SA"> <font size="2">(1F, : </font></span> <span lang="FA"><font size="2">õðð</font></span><span lang="AR-SA"><font size="2"> ¯1E</font></span><span dir="LTR"><font size="2"><br> </font></span><span lang="AR-SA"> <font size="2">E1: : </font></span> <span lang="FA"><font size="2">ñ</font></span><span lang="AR-SA"><font size="2"> ©ÌDH</font></span><span dir="LTR"><font size="2"><br> </font></span><span lang="AR-SA"> <font size="2">3(2Ì ~DH : </font></span> <span lang="FA"><font size="2">ñ </font> </span><span lang="AR-SA"> <font size="2">©ÌDH</font></span><span dir="LTR"><font size="2"><br> </font></span><span lang="AR-SA"> <font size="2">DH(Ì'Ì †4E (D(DÌ : </font> </span><span lang="FA"><font size="2"> òðð</font></span><span lang="AR-SA"><font size="2"> ¯1E</font></span><span dir="LTR"><font size="2"><br> </font></span><span lang="AR-SA"> <font size="2">('/E,'F 31. 4/G : </font> </span><span lang="FA"><font size="2">ñ</font></span><span lang="AR-SA"><font size="2"> ©ÌDH</font></span><span dir="LTR"><font size="2"><br> </font></span><span lang="AR-SA"> <font size="2">¯H,G A1F¯Ì : </font> </span><span lang="FA"><font size="2">ô </font></span><span lang="AR-SA"> <font size="2">9//</font></span><span dir="LTR"><font size="2"><br> </font></span><span lang="AR-SA"> <font size="2">FE© H ADAD H 21/†H(G : (G EB/'1 D'2E</font></span><span dir="LTR"><font size="2"><br> </font></span><span lang="AR-SA"> <font size="2">1H:F : (G EB/'1 D'2E</font></span><span dir="LTR"><font size="2"><br> </font></span><span lang="AR-SA"> <font size="2">¯1/:H1G</font></span><span dir="LTR"><font size="2"> : </font></span><span lang="FA"> <font size="2">ò</font></span><span lang="FA" dir="LTR"><font size="2"> </font></span><span lang="AR-SA"> <font size="2">B'4B :0'.H1Ì</font></span><span dir="LTR"><font size="2"><br> </font></span><span lang="AR-SA"> <font size="2">'/HÌG ~DHÌÌ : </font> </span><span lang="FA"><font size="2">ñ</font></span><span lang="AR-SA"><font size="2"> B'4B E1('.H1Ì</font></span></p> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <font color="#800000"> <span lang="AR-SA"><font size="2">712 *GÌG</font></span></font><span dir="LTR"><font size="2"><font color="#800000"> :</font><br> </font></span><span lang="AR-SA"> <font size="2">(1F, 1' .H( 43*G H (G GE1'G </font></span><span lang="FA"> <font size="2">ô</font></span><span lang="AR-SA"><font size="2"> B'4B FE© .Ì3 EÌ ©FÌE DH(Ì' 1' 43*G H EÌ ~2ÌE E1: 1' GE1'G Ì© ~Ì'2 HFE© H ©EÌ 29A1'F EÌ ~2ÌE 3(2Ì 1' .H( ~'© ©1/G H43*G H .1/ EÌ ©FÌE ('/E,'FG' 1' ~H3* ©F/G H 31. EÌ ©FÌE H/1HF B'(DEG "( 1' ,H4 H (1F, 1' 1Ì.*G H (' ©EÌ '2 3(2ÌG'Ì .1/ 4/G "(©4 EÌ ©FÌE *G B'(DEG 1' EB/'1Ì 1H:F 1Ì.*G H Ì© *©G F'F EÌ ¯0'1ÌE H ©EÌ (1F, H 3(2Ì EÌ 1Ì2ÌE H ©EÌ DH(Ì'Ì ~.*G 4/G (9/ H37 B'(DEG 1' *H37 ('/E,'FG'Ì -DBG 4/G H ¯H,G A1F¯Ì .1/ 4/G B1'1 /'/G H 1HÌ "F1' FE© HADAD H 21/†H(G  '/HÌG H ¯1/:H1G EÌ 1Ì2ÌE (9/ E1:G'Ì ~.*G 4/G 1' 1HÌ ('/E,'FG' B1'1 /'/G H (BÌG (1F,G' H3(2Ì HDH(Ì'Ì ~.*G 4/G 1' (G *1*Ì( 1HÌ EH'/ EÌ 1Ì2ÌE H /1 ".1 †F/ B'4B 1H:F 1HÌ "F EÌ 1Ì2ÌE H (1F, 1' (G E/* </font> </span><span lang="FA"><font size="2">ñ</font></span><span lang="AR-SA"><font size="2"> 3'9* /E EÌ ©FÌE . /1 EHB9 31H (1F, 1' /1HF /Ì3 ©4Ì/G H ('/E,'FG'  ¯H,G A1F¯Ì H E1:G' 1' 1HÌ /Ì3 EÌ †ÌFÌE H (' (1F, 29A1'FÌ *2&ÌF EÌ ©FÌE</font></span><span dir="LTR"><font size="2"> .</font></span></td> <td width="5" background="../images/center_right.gif" height="1" bgcolor="#FFFFFF">&nbsp;</td> <td width="5" height="1" bgcolor="#FFFFFF"></td> </tr> <tr> <td width="5" height="19">&nbsp;</td> <td width="4" background="../images/center_left0.gif" height="19">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="19" align="justify" bgcolor="#FFFFFF"> &nbsp;</td> <td width="5" background="../images/center_right.gif" height="19">&nbsp;</td> <td width="5" height="19">&nbsp;</td> </tr> <tr> <td width="5" height="19">&nbsp;</td> <td width="4" background="../images/center_left0.gif" height="19">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="19" align="justify" bgcolor="#FFFFCC"> <p align="center"><b> <font size="2" color="#008000">.H14* GHÌ, H ~3*G </font></b></td> <td width="5" background="../images/center_right.gif" height="19">&nbsp;</td> <td width="5" height="19">&nbsp;</td> </tr> <tr> <td width="5" height="19">&nbsp;</td> <td width="4" background="../images/center_left0.gif" height="19">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="19" align="justify" bgcolor="#FFFFFF"> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <font size="2"><font color="#800000"> EH'/ D'2E</font><br> GHÌ,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; õðð ¯1E<br> 3ÌFG E1:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; õðð ¯1E<br> ~Ì'2 /':&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ò B'4B 3H~.H1Ì<br> 29A1'F /E ©1/G&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ò B'4B †'Ì.H1Ì<br> FE© H ADAD&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (G EB/'1 ©'AÌ<br> 4©1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ò B'4B :0' .H1Ì<br> '( :H1G&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ½ DÌH'F<br> 1H:F -ÌH'FÌ&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ñ B'4B :0' .H1Ì<br> .D'D ~3*G&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (G EB/'1 ©'AÌ</font></p> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <font size="2"><font color="#800000">712 *GÌG</font><br> GHÌ, G' 1' F¯ÌFÌ .1/ ©1/G H /1 1H:F 31. EÌ ©FÌE 3ÌFG E1: 1' .1/ EÌ ©FÌE H GE1'G (' ~Ì'2 31. EÌ©FÌE H GHÌ,  29A1'F FE© H ADAD  4©1 H '( :H1G 1' (G 'F '6'AG EÌ ©FÌE (9/ '2 'E'/G 4/F .H14 '2 .D'D ~3*G (1'Ì *2ÌÌF 'F '3*A'/G EÌ ©FÌE</font></td> <td width="5" background="../images/center_right.gif" height="19">&nbsp;</td> <td width="5" height="19">&nbsp;</td> </tr> <tr> <td width="5" height="19">&nbsp;</td> <td width="4" background="../images/center_left0.gif" height="19">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="19" align="justify" bgcolor="#FFFFFF"> &nbsp;</td> <td width="5" background="../images/center_right.gif" height="19">&nbsp;</td> <td width="5" height="19">&nbsp;</td> </tr> <tr> <td width="5" height="19">&nbsp;</td> <td width="4" background="../images/center_left0.gif" height="19">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="19" align="justify" bgcolor="#FFFFCC"> <p align="center"><b> <font size="2" color="#008000">E'FÌ ~DHÌ /'E:'FÌ</font></b></td> <td width="5" background="../images/center_right.gif" height="19">&nbsp;</td> <td width="5" height="19">&nbsp;</td> </tr> <tr> <td width="5" height="19">&nbsp;</td> <td width="4" background="../images/center_left0.gif" height="19">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="19" align="justify" bgcolor="#FFFFFF"> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <font size="2" color="#800000">EH'/ D'2E</font></p> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <font size="2"> (1F, õðð ¯1E</font></p> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <font size="2"> D~G ~.*G ñõð ¯1E</font></p> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <font size="2"> 214© ñõð ¯1E</font></p> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <font size="2"> ©4E4 òõð ¯1E</font></p> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <font size="2"> 14*G ~DH&Ì òðð ¯1E</font></p> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <font size="2"> ~Ì'2 /': ò B'4B :0'.H1Ì</font></p> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <font size="2"> 2Ì1G ~DH&Ì ñ B'4B :0'.H1Ì</font></p> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <font size="2"> 1H:F E'Ì9 ó B'4B :0'.H1Ì</font></p> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <font size="2"> E1: Ì' ¯H4* óðð ¯1E</font></p> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <font size="2"> FE© (G EÌ2'F D'2E</font></p> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <font size="2"> 29A1'F /E ©1/G ò B'4B †'Ì.H1Ì</font></p> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <font size="2"> 4©1 ñ B'4B :0'.H1Ì</font></p> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <font size="2" color="#800000">712&nbsp;*GÌG</font></p> <p class="MsoNormal" dir="RTL" style="line-height: normal; direction: rtl; unicode-bidi: embed"> <font size="2">"( 1' ,H4 EÌ "H1ÌE /1 Ì© B'(DEG ©G ¯F,'Ì4 /'4*G H (1F, 1' /1 "( 1Ì.*G H 7(B E9EHD EÌ ,H4'FÌE 'H'.1 ~.* 14*G ~DH&Ì H (9/ '2 †F/ /BÌBG D~G ~.*G 1' '6'AG ©1/G H ñ DÌH'F "( 31/ (1'Ì B/ ©4Ì/F (1F, /1 "F 1Ì.*G H (1F, 1' "(©4 EÌ ©FÌE GE1'G (' ~Ì'2 /': H 2Ì1G ~DH&Ì H †F/ B'4B 29A1'F "( ©1/G 1HÌ "F 1Ì.*G *' /E (©4/ /1 'ÌF A'5DG 214© 1' 31. ©1/G GE1'G (' ©EÌ 4©1 H ©4E4 1' FÌ2 31. ©1/G E1: 1' FÌ2 (' ©EÌ 29A1'F H 1H:F *A* /'/G H "E'/G EÌ ©FÌE (9/ '2 /E ©4Ì/F (1F, 1' (' ©4E4 H 214© 31. 4/G H E1: H 2Ì1G E.DH7 ©1/G H *2&ÌF EÌ ©FÌE .</font></td> <td width="5" background="../images/center_right.gif" height="19">&nbsp;</td> <td width="5" height="19">&nbsp;</td> </tr> <tr> <td width="5" height="19">&nbsp;</td> <td width="4" background="../images/center_left0.gif" height="19">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="19" align="justify" bgcolor="#FFFFFF"> &nbsp;</td> <td width="5" background="../images/center_right.gif" height="19">&nbsp;</td> <td width="5" height="19">&nbsp;</td> </tr> <tr> <td width="5" height="19">&nbsp;</td> <td width="4" background="../images/center_left0.gif" height="19">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="19" align="justify" bgcolor="#FFFFCC"> <p align="center"><b> <font size="2" color="#008000">.H14* ¯1/H '3AF', /'E:'FÌ</font></b></td> <td width="5" background="../images/center_right.gif" height="19">&nbsp;</td> <td width="5" height="19">&nbsp;</td> </tr> <tr> <td width="5" height="19">&nbsp;</td> <td width="4" background="../images/center_left0.gif" height="19">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="19" align="justify"> <p class="MsoNormal" dir="RTL" style="text-align: right; line-height: 150%; direction: rtl; unicode-bidi: embed; margin-bottom: .0001pt"> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: #800000"> EH'/ D'2E:</span></p> <p class="MsoNormal" dir="RTL" style="margin-bottom:0cm;margin-bottom:.0001pt; text-align:right;line-height:150%;direction:rtl;unicode-bidi:embed"> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> '3AF', .1/ 4/G&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 500 ¯1E</span></p> <p class="MsoNormal" dir="RTL" style="margin-bottom:0cm;margin-bottom:.0001pt; text-align:right;line-height:150%;direction:rtl;unicode-bidi:embed"> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> E:2 ¯1/H †1. 4/G&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 400 ¯1E</span></p> <p class="MsoNormal" dir="RTL" style="margin-bottom:0cm;margin-bottom:.0001pt; text-align:right;line-height:150%;direction:rtl;unicode-bidi:embed"> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> ¯H4* E1:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 650 ¯1E</span></p> <p class="MsoNormal" dir="RTL" style="margin-bottom:0cm;margin-bottom:.0001pt; text-align:right;line-height:150%;direction:rtl;unicode-bidi:embed"> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> ~Ì'2 E*H37 .1/ 4/G&nbsp;&nbsp;&nbsp; 2 9//</span></p> <p class="MsoNormal" dir="RTL" style="margin-bottom:0cm;margin-bottom:.0001pt; text-align:right;line-height:150%;direction:rtl;unicode-bidi:embed"> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> 1( 'F'1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1 ~ÌE'FG</span></p> <p class="MsoNormal" dir="RTL" style="margin-bottom:0cm;margin-bottom:.0001pt; text-align:right;line-height:150%;direction:rtl;unicode-bidi:embed"> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> 1( ¯H,G A1F¯Ì&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3 B'4B :0'.H1Ì</span></p> <p class="MsoNormal" dir="RTL" style="margin-bottom:0cm;margin-bottom:.0001pt; text-align:right;line-height:150%;direction:rtl;unicode-bidi:embed"> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> 4©1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3 B'4B :0'.H1Ì</span></p> <p class="MsoNormal" dir="RTL" style="margin-bottom:0cm;margin-bottom:.0001pt; text-align:right;line-height:150%;direction:rtl;unicode-bidi:embed"> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> "(:H1G&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3 B'4B :0'.H1Ì</span></p> <p class="MsoNormal" dir="RTL" style="margin-bottom:0cm;margin-bottom:.0001pt; text-align:right;line-height:150%;direction:rtl;unicode-bidi:embed"> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> 1H:F  FE©  21/†H(G&nbsp;&nbsp;&nbsp; (G EÌ2'F D'2E</span></p> <p class="MsoNormal" dir="RTL" style="text-align: justify; text-justify: kashida; text-kashida: 0%; line-height: 150%; direction: rtl; unicode-bidi: embed; margin-bottom: .0001pt"> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> 3G *' 81A 1HÌ -1'1* E̯0'1ÌE /'.D G1 ©/'E EB/'1 ©EÌ 1H:F E'Ì9 EÌ1Ì2ÌE ~Ì'2 .1/ 4/G 1' (G 3G B3E* *B3ÌE ©1/G H G1 B3E* 1' /1 Ì©Ì '2 81AG' EÌ1Ì2ÌE.'ÌF :0' 1' EÌ*H'F (' ¯H4* ¯H3AF/  E1:  (D/1†ÌF H E1:'(Ì GE /13* ©1/.-1'1* 2Ì1 /H *' '2 81AG' 1' ©E EÌ©FÌE. ~Ì'2 1' /1 81A 3HE .H( *A* EÌ/GÌE HB*Ì ©'ED *A* /'/G 4/ H ~Ì'2 3(© 4/ ¯H4* 1' '6'AG EÌ©FÌE H 1HÌ -1'1* E̯0'1ÌE "1'E "1'E 31. 4H/.</span><span lang="en-us" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> </span> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> /1 /H 81A /̯1 ~Ì'2 1' *A* EÌ/GÌE *' 1F¯ 7D'ÌÌ (G .H/4 (¯Ì1/.</span><span lang="en-us" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> </span> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> '3*A'/G '2 81A E3Ì ('9+ EÌ4H/ :0' 79E (G*1Ì /'4*G ('4/.</span></p> <p class="MsoNormal" dir="RTL" style="text-align: justify; text-justify: kashida; text-kashida: 0%; line-height: 150%; direction: rtl; unicode-bidi: embed; margin-bottom: .0001pt"> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> /1 Ì©Ì '2 81AG' ©G E.5H5 .H14* ¯1/H '3* ~Ì'2 ©G ©EÌ 7D'ÌÌ 4/ ¯1/H 1' '6'AG EÌ©FÌE H EB/'1Ì *A* EÌ/GÌE '¯1 ¯1/H Ì© EB/'1 /1 1H:F *A* /'/G 4H/ †1(Ì .H/4 1' (G*1 ~3 EÌ/G/.</span><span lang="en-us" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> </span> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> EB/'1Ì FE© H 21/†H(G GE (G ¯1/H '6'AG EÌ©FÌE. "( '6'AG EÌ©FÌE H E̯0'1ÌE ©'ED (~2/. -/H/ Ì© 3'9* Ì' Ì© 3'9* H FÌE 2E'F D'2E '3* *' ¯1/H .H( ~.*G 4H/.</span><span lang="en-us" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> </span> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> /1 81A 3HE ©G (1'Ì .H14* '3AF', '3* HB*Ì ~Ì'2 7D'ÌÌ 4/ '3AF', .1/ 4/G 1' '6'AG EÌ©FÌE.</span><span lang="en-us" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> </span> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> GE 3'BG H GE (1¯ '3AF', 1' '3*A'/G EÌ©FÌE.</span><span lang="en-us" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> </span> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> '3AF',G' 1' ©'ED'K GE EÌ2FÌE. E/* 2E'F ~.* '3AF', 20 /BÌBG '3* .ÌDÌ ©E "( '6'AG EÌ©FÌE H E̯0'1ÌE ©'ED (~2/.</span><span lang="en-us" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> </span> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> HB*Ì E1: 31. 4/ ©EÌ FE© H 21/†H(G '6'AG EÌ©FÌE H E̯0'1ÌE ©F'1.</span></p> <p class="MsoNormal" dir="RTL" style="text-align: justify; text-justify: kashida; text-kashida: 0%; line-height: 150%; direction: rtl; unicode-bidi: embed; margin-bottom: .0001pt"> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> HB*Ì EH'/ G1 3G 81A "E'/G 4/ E1: 1' (G .H14* ¯1/H '6'AG EÌ©FÌE H Ì© 3'9* GE (' ¯H4* E1: EÌ~2ÌE HB*Ì ,' 'A*'/ '3AF', 1' GE '6'AG EÌ©FÌE. '¯1 EÌ.H'GÌE 1( 'F'1 '6'AG ©FÌE (G G1 /H *' .H14* (G 9FH'F †'4FÌ 1( 'F'1 '6'AG EÌ©FÌE 'E' '¯1 F.H'GÌE '2 1( 'F'1 '3*A'/G ©FÌE 1( ¯H,G 1' /'.D 1H:F ©EÌ *A* /'/G H 4©1 H "(:H1G '6'AG EÌ©FÌE H (G 9FH'F †'4FÌ (1'Ì G1 /H .H14* '3*A'/G EÌ©FÌE.</span><span lang="en-us" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> </span> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> /B* ©FÌ/ '¯1 /1 G1 Ì© '2 .H14* G' '2 Ì©Ì '2 1(G' '3*A'/G ©FÌE :0' E2G (/Ì .H'G/ /'4* ~3 (1'Ì G1 /H '2 Ì© FH9 1( '3*A'/G ©FÌ/.</span><span lang="en-us" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> </span> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> 3EF'FÌG' E9EHD'K 1( 'F'1 '3*A'/G EÌ©FF/.</span><span lang="en-us" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> </span> <span lang="FA" style="font-size: 10.0pt; line-height: 150%; font-family: Tahoma,sans-serif; color: black"> †'4FÌ FÌ2 GE1'G .H14* 31H EÌ4H/ H /'.D "F E.DH7 F©1/ÌE ©F'1 "F E̯0'1ÌE.</span></td> <td width="5" background="../images/center_right.gif" height="19">&nbsp;</td> <td width="5" height="19">&nbsp;</td> </tr> <tr> <td width="5" height="19">&nbsp;</td> <td width="4" background="../images/center_left0.gif" height="19">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="19" align="justify"> &nbsp;</td> <td width="5" background="../images/center_right.gif" height="19">&nbsp;</td> <td width="5" height="19">&nbsp;</td> </tr> <tr> <td width="5" height="19">&nbsp;</td> <td width="4" background="../images/center_left0.gif" height="19">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="19" align="justify"> &nbsp;</td> <td width="5" background="../images/center_right.gif" height="19">&nbsp;</td> <td width="5" height="19">&nbsp;</td> </tr> <tr> <td width="5" height="19">&nbsp;</td> <td width="4" background="../images/center_left0.gif" height="19">&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">&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> <tr> <td width="5" height="19">&nbsp;</td> <td width="4" background="../images/center_left0.gif" height="19">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="19" align="justify"> <p align="center"> <font color="#0000FF" size="2"> <a href="../Index_F.htm">('2¯4*</a></font></td> <td width="5" 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" dir="rtl"> <span lang="fa"><font size="2"> <a href="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"> <font size="2"> <a href="../monasebatha/mahdaviyat.htm" style="text-decoration: none"> <font color="#0000FF">A1GF¯ EG/HJ*</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%" bordercolor="#3C9DFF"> <tr> <td background="../images/back1button.gif"> <p align="center" 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></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"> <font size="2" color="#0000FF"> <a style="text-decoration: none" href="Main-tarikh.htm"> <font color="#0000FF">*'1Ì. /'E:'F</font></a></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%" bordercolor="#3C9DFF"> <tr> <td background="../images/back1button.gif"> <p align="center" dir="rtl"> <font size="2"> <a href="../asnad/asnad%20-%20main.htm" style="text-decoration: none"> <font color="#0000FF">'3F'/ *'1J.Ì</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="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="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"> <span lang="fa"> <a style="text-decoration: none" href="Main-mazhabi.htm"><font size="2" color="#0000FF"> 'E'©F E0G(Ì</font></a></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"> <span lang="fa"> <a style="text-decoration: none" href="emamzadeh1.htm"><font size="2" color="#0000FF"> "3*'F E7G1</font></a><font size="2" color="#0000FF"><a style="text-decoration: none" href="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"> <span lang="fa"> <a href="../Tarjomeh/Main.htm" style="text-decoration: none"> <font size="2" color="#0000FF">&nbsp;</font></a></span><font size="2" color="#0000FF"><a style="text-decoration: none" href="Main-goyesh.htm"><font color="#0000FF">¯HÌ4 /'E:'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="rtl"> <font size="2"> <a href="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" dir="rtl"> <font size="2" color="#0000FF"><span lang="fa"> <a style="text-decoration: none" href="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"> <font size="2" color="#0000FF"> <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" 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"> <font size="2" color="#0000FF"><font color="#0000FF"> <a style="text-decoration: none" href="../matbooat/Main.htm"><font color="#0000FF">E7(H9'*</font></a></font> <font color="#0000FF"> <a href="../matbooat/Main.htm" style="text-decoration: none"> <font color="#0000FF">H .(1¯2'1ÌG'</font></a></font></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"> <font size="2" color="#0000FF"> <a style="text-decoration: none" href="../imam%20sajad/darolaytam.htm"> <font color="#0000FF">/'1'D'Ì*'E</font></a></font></a><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" style="margin-top: 0; margin-bottom: 0"> <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></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"><span lang="en-us"> <font size="2" color="#808080">0232-5253699</font></span></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="1948"> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="1"> </td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="1"> </td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="25"> &nbsp;</td> </tr> <tr> <td height="25"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="14"> </td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="22"> &nbsp;</td> </tr> <tr> <td height="1046"> &nbsp;</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">&#1570;&#1605;&#1575;&#1585;</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>