ÿþ<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> E5'-(G .(1¯2'1Ì B1"FÌ 'Ì1'F (' /©*1 A1Ì/G EG/HÌ /'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"> <table border="0" style="border-collapse: collapse" width="775" height="1"> <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="../Damghan/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 lang="fa"> </span> </font><font size="2" color="#FFFFFF">E5'-(G .(1¯2'1Ì B1"FÌ 'Ì1'F (' /©*1 A1Ì/G EG/HÌ /'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="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 style="line-height: 150%"> <font size="2">¯1HG (JF 'DEDD: 2('F A1'F3G :FÌ '2 *5'HJ1 (/J9 '3* CG E*1,E EÌ *H'F/ '2 'JF :F' (1'Ì 'J,'/ E*HF 13'  /BJB H H'6- '3*A'/G CF/ (G GEJF /DJD D'2E '3* '2 2J1 H (E H *E'E FC'* 81JA 2('F EB5/ (G .H(Ì E7D9 ('4/  (G HJ˜G /1 EH1/ E*HF *.55Ì '3D'EÌ CG CDE'* HJ˜G H '57D'-'* ABGÌ E.5H5 (G .H/ 1' /' 1/ (' ('1 E9F'JÌ .'5 (F'(1'JF *FG' E4CD (G E9F'Ì H'B9Ì GEJF «'F*B'D EA'GJE HJ˜G  E9'/D J'(Ì H E9'/D 3'2Ì H'˜G G'Ì /JFÌ» (G ¯HFG 'Ì /BJB H /1 9JF -'D H'6-  B'(D /1C H (G F-HÌ 4JH' (1'Ì E.'7( A1'F3HÌ 2('F '3*.</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"> <p style="line-height: 150%"> <font size="2"> <img border="0" src="../images/mahdavi%20damghani.jpg" align="left" alt="/©*1 A1Ì/G EG/HÌ /'E:'FÌ" width="130" height="196">A1J/G EG/HÌ /'E:'FÌ  E*1,E "+'1 CD'3JC /1 ¯A* H¯H (' .(1F¯'1 (.4 (JF 'DEDD .(1¯2'1Ì B1"FÌ 'J1'F('JCF')  (' (J'F 'JF E7D( H (' '4'1G (G 'JF CG 2('F A1'F3G (3'F 2('F E'/1Ì 'H '3*  EÌ ¯HJ/: .H4(.*'FG A1'F3G E'FF/ (3J'1Ì '2 C4H1G'Ì D'*JF 2('F /J¯1  C'*HDJC '3* H "JJF C'*HDJC FJ2 GE'F ¯HFG CG EÌ /'FJ/ (' EA'GJE /JFÌ '3D'E 4('G* A1'H'F /'1/  (F'(1'JF D:'* GE E9F' J' F2/JC E9F'Ì 'HDJG (G 1'-*Ì EÌ *H'FF/ /1 /3*13 E*1,E B1'1¯1A*G H B'(D '3*A'/G (G ,'Ì JC/J¯1 ('4F/ HDÌ "F†G /:/:G '5DÌ EF '3* *HDJ/ *1,EG G'Ì C'ED'K '3D'EÌ J9FÌ *1,EG G'JÌ (' D:'* '.*5'5Ì 5/ /1 5/ E*9DB (G ,G'F '3D'E (' H'˜G G'Ì E-6 '3D'EÌ '3* '2 F81 EF  2J('JÌ JC E*F /1 GEJF H'˜G G'Ì .'D5 FGA*G '3* H¯1FG ('BÌ C'1 ('2Ì 3'/G 'Ì (J4 FJ3*! ( 'D(*G (G BHD "E1JC'JÌ G' CG '2 '57D'- «easy to play» '3*A'/G EÌ CFF/). </font> </p> <p style="line-height: 150%"> <font size="2">EG/HÌ /'E:'FÌ /1 EH1/ E5'&( EH,H/ (1 31 1'G *H2J9 "+'1 '3D'EÌ *1,EG 4/G /1 C4H1 G'Ì A1'F3G 2('F  31H/G 'Ì '2 «~D H1DF»  4'91 (21¯ B1F FH2/GE A1'F3G 1' (' 'JF E6EHF 2E2EG EÌ CF/: «F:EG G' H F'DG G'Ì 7HD'FÌ H EE*/ HJHDHF  BD(E 1' '2 4/* /1/ H 1F, EÌ .1'4F/ ...» H /1 '/'EG EÌ 'A2'J/: (G*1 '3* (G ,'Ì F:EG G'Ì HJHDF (G /A'*1 A1GF¯Ì 3A'1*E'F CG E*r3A'FG (' E*1,EJF H F'41JF GEC'1Ì FEÌ CFF/  '4'1G CFJE (3J'1Ì '2 .H'FF/¯'F E4*'B E*HF '3D'EÌ H /JFÌ  (G /F('D 'J,'/ '1*('7 (' 'JF,'F( J' 3'J1 E*1,E'F H F'41'F E*HF /JFÌ 31¯1/'F E'F/G 'F/ H FEÌ /'FF/ †¯HFG C*'( G'Ì EH1/ F81 .H/ 1' *GJG CFF/ †HF E1C2 E4.5Ì (1'Ì *H2J9 "+'1 '3D'EÌ H,H/<span lang="en-us"> </span>F/'1/ *' "/13 E*1,EJF H EvDAJF H E1'C2 ~.4 1' /1 '.*J'1 "F G' B1'1 /G/ (F'(1'JF C*'( G' *1,EG H EF*41 EÌ 4HF/ (/HF "F CG A1/Ì (G 1'3*Ì /D3H2  ~J¯J1Ì C'1 1' (G 9G/G (¯J1/ 'D(*G C*'( G'JÌ (' *1,EG G'JÌ (3J'1 69JA (G ('2'1 '1H~' 1'G J'A*G 'F/ CG '5HD'K .H'FF/G 9D'BEF/ H E4*'B 1' ~3 '2 .H'F/F †F/ 5A-G  (G /DJD E4'G/G '4C'D G'Ì '3'3Ì H E*#3A'FG ¯'G E6-C  '2 .1J/ †FJF C*'( G'JÌ EF51A EÌ CF/. </font> </p> <p style="line-height: 150%"> <font size="2">HÌ /1 '/'EG '2 *D'4 G'Ì 'F*4'1'* «'F5'1J'F» /1 *H2J9 C*'( G'Ì *'TDJAÌ H *1,EG 'Ì (G FB'7 E.*DA ,G'F '2 E'/'¯'3C'1 ¯1A*G *' 3F¯'D  C'2'(D'FC'  ~'1J3  CFJ' H "A1JB'Ì 4E'DÌ  E1C2Ì H ,FH(Ì B/1/'FÌ C1/. GE†FJF 'JF E*1,E "+'1 CD'3JC EJ2'F H F-HG '3*B('D '2 "+'1 /JFÌ /1 ,G'F :1( 1' (3J'1 .H( '12J'(Ì C1/ H *H6J- /'/: /1 FE'J4¯'G C*'( 3'D ¯04*G HB*Ì /H ('2/J/ CFF/G '2 EH2'E(JC H E1'C4 (' *1,EG A1'F3HÌ '+1Ì GE†HF «FA3 'DEGEHE» E1-HE 4J. 9('3 BEÌ (1G) EH',G 4/F/ CG (G *41J- -'/+G 1H2 C1(D' H 4G'/* 3'D'1 4GJ/'F -61* 3J/'D4G/' (9) H J'1'F (' HA'HÌ 'H ~1/'.*G '3* '2 'JF CG †FJF "+'1Ì (G A1'F3G (1¯1/'F/G 4/G (H/  (3J'1 .H4-'D H 4¯A* 2/G 4/F/ H G1 JC (Ì /1F¯ F3.G G'Ì (Ì 4E'1Ì '2 'JF C*'( 1' (1'Ì C4H14'F .1J/'1Ì C1/F/. </font> </p> <p style="line-height: 150%"> <font size="2">HÌ 'A2H/: FEÌ *H'FJ/ *5H1 CFJ/ /1 "F D-8G †G '-3'3Ì /1 H,H/E :H:' EÌ C1/...! FG (G .'71 'JF CG EF CE *1JF  E*1,E 'JF C*'( ¯1'F B/1 G3*E (DCG (G 'JF .'71 CG EÌ /J/E /1 "JF/G F2/JC  .H'FF/¯'F "A1JB'JÌ E3DE'F H (G HJ˜G 4J9G 'JF C*'( 1' .H'GF/ .H'F/ H (' -BJB* ,1J'F :E 'F¯J2 H *'+1"H1 C1(D' H 4.5J* J¯'FG H (Ì GE*'Ì -61* 3J/'D4G/' '('9(/'DDG 'D-3JF (9) CG A12F/ ¯1'FB/1 EHDÌ 'DEH'DÌ -61* 'EJ1'DE$EFJF (9) (J4*1 H (G*1 "4F'EÌ 4HF/. </font> </p> <p style="line-height: 150%"> <font size="2">EG/HÌ /'E:'FÌ /1 '/'EG (G CJAJ* F'E7DH( *1,EG G'Ì A1'F3HÌ EH,H/ /1 -H2G E*HF /1 'J1'F '4'1G H '8G'1C1/: HB*Ì (G 4G1G'Ì EB/3Ì E'FF/ E/JFG EFH1G H ECG EC1EG 3A1EÌ CFJE H C*'( .'FG G'Ì '91'( 1' :FÌ '2 5/ G' ,D/ C*'( (1¯1/'F 4/G (G 91(Ì '2 2('F G'Ì E.*DA EÌ (JFJE /1/Ì 4/J/ H 'F/HG('1 1H-E'F 1' /1 (1EÌ ¯J1/ H "GÌ 9EJB '2 3JFG (1EÌ C4JE CG †1' 37- *1,EG G'Ì E' EÌ *H'F/ *' 'JF 'F/'2G ~'JJF ('4/ E*r3A'FG /1 'J1'F (G E-6 "F CG A1/Ì 2('FÌ .'1,Ì 1' A1' EÌ ¯J1/ †FJF EÌ ~F/'1/ CG EÌ *H'F/ G1 E*FÌ 1' H (G HJ˜G E*HF /JFÌ 1' (G 2('F EB5/ "F H (G /13*Ì *1,EG CF/ 'D(*G C*'( G'Ì 3'/ G 'Ì (1'Ì *1,EG H,H/ /'1/ (1'Ì E+'D /'3*'F G'Ì '12'F BJE* H (Ì 'GEJ*  HDÌ C*'( G'Ì '124EF/ /JFÌ H '/(J'* :FÌ E' (1'Ì *1,EG ,'Ì *9EB (3J'1 /'1/. </font> </p> <p style="line-height: 150%"> <font size="2">HÌ *H6J- /'/: ¯'G (' *H1B /1 *1,EG G'Ì «FG, 'D(D':G»  "FB/1 (G '4*('G (1 EÌ .H1E CG C*'( 1' EÌ (F/E *' '2 4/* 'F/HG H F'1'-*Ì 41H9 (G ¯1J3*F FCFE EF (' FG'J* '-*1'E H .6H9 '2 †FJF E*1,EJFÌ 3$'D EÌ CFE CG (' †G ,1r* H 4G'E*Ì (1 1HÌ †FJF "+'1 EB/3 H EGEÌ /3* EÌ ¯0'1F/ H "+'1 (1¯1/'F 4/G (Ì '124 H 24*Ì 1' /1'.*J'1 .H'FF/¯'F .H/ B1'1EÌ /GF/ (/HF "F CG '2 ".1* .H/ H F*J,G C'14'F (G /13*Ì E7D9 ('4F/ EF 4.5'K (' 'JF CG 2('F A1'F3G 1' *B1J('K GE'FF/ 2('F E'/1Ì 'E EÌ /'FE *' CFHF †FJF ,1r*Ì 1' (G .H/ F/'/G 'E *' CD'E EHD'JE'F -61* 'EJ1'DE$EFJF (9) 1' *1,EG CFE. </font> </p> <p style="line-height: 150%"> <font size="2">«5-JAG 3,'/JG»  JCÌ '2 "+'1 ¯1'F B/1 '3D'EÌ '3* CG A1J/G EG/HÌ /'E:'FÌ 3'D G' ~J4 (G *1,EG "F E('/1* H12J/ 'H /1 'JF ('1G EÌ ¯HJ/: JC ('1 1$J'Ì 5'/BG 9,J(Ì /J/E CG /1 7HD "F (G FH9Ì (G EF 'E1 EÌ 4/ CG *1,EG /9'G'Ì -61* 2JF 'D9'(/JF  9DÌ (F 'D-3JF (9) 1' (G 2('F G'Ì ¯HF'¯HF 'F,'E /GE 'JF 1vJ' CG FH9Ì EC'4AG (H/  B/1*Ì /1 EF 'J,'/ C1/ CG GFH2 GE G1¯'G 'JF *1,EG 1' CG G4* 3'D ~J4 (G '*E'E 13J/G  *H1B EÌ CFE '2 .H/ EÌ ~13E †¯HFG EF CE *1JF *H'F3*G 'E *1,EG 'Ì 'JF ¯HFG *B/JE CFE H '5HD'K †¯HFG 'JF ,3'1* H 4G'E* 1' /1 H,H/E J'A*E CG (G 1$J'JE ,'EG *-BB ((.4E 'D(*G /1 "F 2E'F ,H'F *1 (H/G H *'2G (G *1,EG '/9JG '3D'EÌ H GE 2E'F (G 'F,'E *1,EG «CE/Ì 'DGÌ» 1HÌ "H1/G (H/E H 4H1 H GJ,'F H 'F1˜Ì .'5Ì /'4*E. </font> </p> <p style="line-height: 150%"> <font size="2">E*1,E C*'( «/9'G'Ì B1"F » '+1 -3JF H'+BÌ /1 (.4 ~'J'FÌ 'JF ¯A* H¯H /1 ~'3. (G 'JF 3$'D CG *1,EG «5-JAG 3,'/JG» *' †G -/ HA'/'1 (G E*F '5DÌ '3* †FJF ~'3. /'/: *E'E *D'4 .H/ 1' (G C'1 ¯1A*E CG '2 E-*H' .'1, F4HE H (G GEJF /DJD 'JF *1,EG 2E'F 2J'/Ì (1/ (G GE'F 'F/'2G /H 3'D 7HD C4J/ *' ~/1E /C*1«'-E/ EG/HÌ /'E:'FÌ» @ CG ./'HF/ 3'JG 'J4'F 1' (1 31E GE†F'F F¯'G /'1F/ @ HJ1'J4 FG'JÌ "F 1' (G '*E'E 13'FF/ 'J4'F C'1 1' (' E1',9G (G E*F 91(Ì H *7(JB EH (G EHÌ "F (' E*F *1,EG A1'F3HÌ 'JF CE *1JF (G 'F,'E 13'F/F/ D'2E (G ¯A*F '3* CG EF (' E1',9G (G (J4 '2 GA* J' G4* E*F A'13Ì H FJ2 *1,EG 'F¯DJ3Ì "F CG «/C*1 HJDJ'E †J*JC» (G 'F,'E 13'F/G (H/F/ (G *1,EG E*F A1'F3HÌ "F 'B/'E H12J/G (H/E H D0' E7'(B* "F *1,EG A1'F3HÌ (' E*F 91(Ì C'1Ì (H/ CG ~/1E (G 'F,'E "F ~1/'.*F/. </font> </p> <p style="line-height: 150%"> <font size="2">'2 EJ'F /J¯1 "+'1 *1,EG 4/G 'JF E*1,E (G A1'F3G EÌ *H'F (G C*'( G'Ì «FA3 'DEGEHE» '2 E1-HE 4J. 9('3 BEÌ (1G)  «'FJ3 /D G'» (G BDE /C*1 F'/1 A6DÌ  «E5'J( -61* 'EJ1'DE$EFJF (9)» (G BDE E,J/ E39H/Ì  «FH1JG "3E'FÌ: 2F/¯'FÌ 4G'/* -61* A'7EG 2G1' (3)» (G BDE 9DÌ 16' E3,/ ,'E9Ì  «†¯HFG FE'2 (.H'FJE» H FJ2 «GEG ('J/ (/'FF/» (G BDE 4J1JF -61* «"J* 'DDG '(1'GJE 'EJFÌ» '4'1G C1/. '2 C*'( G'Ì /1 /3* *1,EG FJ2 EÌ *H'F '2 «~J'E "H1 1-E*» (G BDE 4J1JF EJ141JAÌ H «'2 9DÌ "EH2 '.D'5 9ED» (G BDE /C*1 '-E/ EG/HÌ /'E:'FÌ F'E (1/. J'/"H1Ì EÌ 4H/ A1J/G EG/HÌ /'E:'FÌ E*HD/ *Ì1 E'G G2'1 H 3Ì5/ H †GD /H 4E3Ì H '2 ,EDG E*1,E'FÌ '3* CG (J4 '2 "F CG .H/ 1' /1 -'4JG E4:HD CF/ (G *1,EG EÌ ~1/'2/ 'H A12F/ /C*1 '-E/ EG/Ì /'E:'FÌ  '3*'/ '/(J'* 91( H A'13Ì '3* CG GE 'CFHF /1 /'F4¯'G «G'1H'1/» "E1JC' (G */1J3 '/(J'* A'13Ì H 91( H FJ2 ABG H '5HD H CD'E (1'Ì /'F4,HJ'F /H1G AHB /C*1' E4:HD '3*. HÌ *-5JD'* .H/ 1' /1 C4H1G'Ì A1'F3G  'F¯DJ3 H '3~'FJ' H 'J*'DJ' (G ~'J'F 13'F/G H *.55 'H /1 14*G '/(J'* '1H~'Ì B1HF H37'JÌ '3* 'H (' *3D7 (G (F, 2('F A1'F3HÌ  'F¯DJ3Ì  'J*'DJ'JÌ H '3~'FJHDÌ H D'*JF (J4*1 (G *1,EG "+'1 CD'3JC '1H~' ('2 B1F †G'1/GE *' FH2/GE) H *1,EG "+'1 EF8HE 4'91'F '1H~' H 'FH'9 C*( 91A'FÌ H 1H'F4F'.*Ì E4:HD '3*. </font> </p> <p style="line-height: 150%"> <font size="2">EG/HI /'E:'FÌ F4'F 'A*.'1 4G1 ADH1'F3 'J*'DJ' EH3HE (G «¯D CH†HDH» 1' (1'I A9'DJ* ¯3*1/G /1 -H2G *1,EG "+'1 '/(Ì 'JF C4H1 /1 3'D&nbsp;2004 /1J'A* C1/ ~J4 '2 "F /1 3'D&nbsp;/H G2'1 H 3G (G 9FH'F E*1,E 3'D /1 'J*'DJ' (1F/G ,'J2G «/JG ¯H H'D1Ì» '2 4G1 «EF3DJ†G» 4/ 'JF F4'F CG E9*(1*1JF ,'J2G '/(Ì ,G'F ~3 '2 «FH(D» H «~HDJ*21» '3* (1'I *1,EG A'13Ì «CE/I 'DGÌ» H «2F/¯'FÌ FH» '2 «/'F*G» 4'91 4'91'F 'J*'DJ' H '3'3'K '1H~' H (Ì3* H 3G '+1 /J¯1 '2 '/(J'* "F C4H1 (H/. HI GE†FJF (1'I *1,EG "+'1 /'F*G @ CG (G ~/1 2('F 'J*'DJ'JÌ 4G1* J'A*G '3* @ †F/JF F4'F DJ'B* H E/'D 'A*.'1 7D' H F4'F 7D'Ì 4G1G'Ì ADH1'F3 H 1'HF' ( CG "1'E¯'G /'**G /1 "F ,' H'B9 '3* ) 1' (G .H/ '.*5'5 /'/ H '2 4G1/'1Ì ADH1'F3 H FJ2 1'HF' H FJ2 '2 E1C2 /'F*G /1 'J*'DJ' H'B9 /1 ADH1'F3 H FJ2 †F/JF FH(* '2 CDJ3'Ì «3'F A1'F†3CH» /1 «1'HF'» (G '.0 F4'F G'Ì ¯HF'¯HF F'&D "E/G '3* H /1 3'D /H G2'1 H ~F, (G 9FH'F 4G1HF/ 'A*.'1Ì 4G1 1'HF' (1¯2J/G 4/ CG D'2E (G 0C1 '3* CG 'JF 9FH'F 4G1HF/Ì G1¯2 *'CFHF (G GJ† 2FÌ H (G GJ† 'J1'FÌ H (G GJ† E3DE'FÌ '97' F4/G (H/ 'H (G 9FH'F 3AJ1 A1GF¯Ì EJ'F 1'HF' H *G1'F FJ2 'F*.'( 4/ H /1 1H2 2F /1 G4*E E'13<span lang="en-us"> </span>/H G2'1 H ~F, 'JF 9FH'F 1' FJ2 '2 4G1 1'HF' /1J'A* C1/.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font></p> <p style="line-height: 150%"> <font size="2">&nbsp;/1 3'D 2006 FJ2 ('D'*1JF F4'F DJ'B* C4H1 'J*'DJ' 1' '2 «1HE'FH (1H/Ì»  1JJ3 ,EGH1 "F C4H1 (G ~'3 *D'4 /G 3'DG '4 (1'Ì *1HJ, H E91AÌ "+'1 EGE '/(J'* 'J*'DJ' H (G HJ˜G *1,EG *E'E "+'1 /'F*G (G A'13Ì F'&D "E/ 'JF F4'F G1¯2 (G JC A1/ :J1'J*'DJ'JÌ *'CFHF 'G/'F4/G (H/ H EG/HÌ /'E:'FÌ F.3*JF :J1 'J1'FÌ H F.3*JF E3DE'FÌ '3* CG (G '.0 'JF F4'F DJ'B* CG F4'F EDÌ "F C4H1 '3* F'&D "E/. </font></p> <p style="line-height: 150%"> <font size="2">'2 ,EDG "+'1 *1,EG 4/G (G 2('F A'13Ì *H37 HÌ EÌ *H'F (G «CE/Ì 'DGÌ»  «2F/¯'FÌ FH»  «EJGE'FÌ»  «~J1'EHF 3D7F*»  «~J1'EHF 2('F 9'EJ'FG» '+1 «/'F*G» H FJ2 «(G4* ¯E4/G» '+1 «,'F EJD*HF» H *1,EG "+'1 (21¯*1JF 4'91'F 'J*'DJ' E'FF/ «~*1'1C»  «D&H('1/Ì»  «CH'2JE/H»  «C'1/'1DÌ»  «'HF¯1*Ì» H «EHF*'DG» H FJ2 C*'( G'JÌ '2 «'HE(1*H 'CH» H «"F/1G ˜J/»  «¯H*G»  «4C3~J1»  «EHDJ1» H «'3C'1 H'JD/» H (3J'1Ì /J¯1 '4'1G C1/. </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"> &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"> <p align="center"> <font size="2" color="#800000">EF(9: .(1¯2'1Ì B1"FÌ 'Ì1'F (08/02/87)</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"> &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"> <a style="text-decoration: none" href="main.htm"> <font size="2">&nbsp;<font color="#0000FF"> ('2¯4* (G </font> </font> <font color="#0000FF" size="2">5A-G '.('1 /'E:'F&nbsp;&nbsp;&nbsp;</font></a></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 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></a></span></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"> <font size="2" color="#0000FF"> <a href="../Damghan/Main.htm" style="text-decoration: none"> <font color="#0000FF">/'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%" 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"> <a href="../asnad/asnad%20-%20main.htm" style="text-decoration: none"> <font color="#0000FF">E1©2 '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="100%" bordercolor="#3C9DFF"> <tr> <td background="../images/back1button.gif"> <p align="center" dir="rtl"> <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" 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 href="../Damghan/asare%20tarikhi.htm" style="text-decoration: none"><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"> <a href="../tasavir/maine0.htm" style="text-decoration: none"><font size="2" color="#0000FF"> "D(HE 9©3</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" dir="rtl"> <span lang="fa"> <font size="2" color="#0000FF"> <a href="../Damghan/amakenn%20mazhabi.htm" style="text-decoration: none"><font color="#0000FF"> 'E'©F E0G(Ì</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 href="../Tarjomeh/Main.htm" style="text-decoration: none"> <font size="2" color="#0000FF">&nbsp;</font></a><a style="text-decoration: none" href="../monasebatha/shohadaye%20rohani.htm"><font size="2" color="#0000FF">Ì'1'F 4G1 Ì'1</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"> <a style="text-decoration: none" href="../Damghan/goyesh%20damghani.htm"><font size="2" color="#0000FF"> ¯HÌ4 /'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" dir="rtl"> <a style="text-decoration: none" href="../mashahir/main.htm"><font size="2" color="#0000FF"> E4'GÌ1 /'E:'F</font></a><font size="2" color="#0000FF">Ì</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"> <a href="../ozviyat/main1.htm" style="text-decoration: none"><span lang="fa"><font size="2" color="#0000FF">96HJ*</font></span></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"> <font size="2" color="#0000FF"> <a href="../matbooat/Main.htm" style="text-decoration: none"><font color="#0000FF">E7(H9'*</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"> <span lang="fa"> <a style="text-decoration: none" href="../javaneh/javaneh-main.htm"> <font size="2" color="#0000FF">F41ÌG ,H'FG</font></a></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"> <a style="text-decoration: none" href="../nashriyeh/nashriye-%20arshiv.htm"><font size="2" color="#0000FF"> F41ÌG</font></a><font size="2" color="#0000FF"> F¯'G</font></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>-0232</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="2165"> <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="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="main-farhangi.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="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="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="5"> </td> </tr> <tr> <td height="24"> &nbsp;</td> </tr> <tr> <td height="24"> &nbsp;</td> </tr> <tr> <td height="24">