ÿþ<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="http://www.w3.org/TR/REC-html40"> <head> <meta name="GENERATOR" content="Microsoft FrontPage 5.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <meta http-equiv="Content-Language" content="fa"> <meta http-equiv="Content-Type" content="text/html; charset=unicode"> <title>*-DÌD /©*1 3(-'FÌ ~Ì1'EHF EÌHG EEFH9G 9'ED (-1'F 31E'ÌG /'1Ì </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="21"> <tr> <td width="5" height="19">&nbsp;</td> <td width="33" background="../images/lheadcenter.gif" height="19">&nbsp;</td> <td background="../images/backheadcenter.gif" dir="rtl" valign="top" style="font-family: Tahoma; font-size: 10pt" height="19"> <p align="right"><font color="#FFFFFF"> :: *-DÌD /©*1 3(-'FÌ ~Ì1'EHF EÌHG EEFH9G 9'ED (-1'F 31E'ÌG /'1Ì</font></td> <td width="4" background="../images/rheadcenter.gif" height="19">&nbsp;</td> <td width="7" height="19">&nbsp;</td> </tr> </table> <table border="0" style="border-collapse: collapse; text-align:justify" width="589" height="1"> <tr> <td width="5" height="18"></td> <td width="4" background="../images/center_left0.gif" height="18">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="18" align="justify"> <div align="justify"> <p style="line-height: 150%"> <font size="2"> <img border="0" src="../images/dr.sobhsni59.jpg" align="right" alt="/©*1 -3F 3(-'FÌ" width="248" height="246">(-1'F /1 ('2'1G'J E'DJ "E1JC' /1 JC E'G ¯04*G *-BJB' 1J4G /1 9H'ED 4F'.*G 4/G 'J /'1/ CG (' *H,G (G GE'F 9H'ED *D'4 EJ 4H/ EG'1 H (G A1,'E EF'3(J G/'J* 4H/ H B'9/*' GE (' '*.'0 3J'3* G'J 'B*5'/J EB*6J (G ,3*,HJ 1'GC'1G'J EF'3( (1'J /1E'F "F 'G*E'E .H'G/ 4/. (/JGJ '3* E*F'3( (' C'1 "E/J 3J'3* G'J E*.0G (-1'F /'1'J '(9'/ E*FH9J EJ ¯1//. (F'(1 'JF E-/H/ 4/F H J' ¯3*1/G 4/F (-1'F E'DJ H 'EC'F 31'J* "F (G CD 'B*5'/ /1 JC C4H1 H J' /1 *9/'/ 2J'/J '2 C4H1G' (3*¯J (G B'(DJ* 3J'3* G'J 'B*5'/J /'1/ CG ¯2J/G EJ 4H/ H '9E'D EJ ¯1//.</font></div> <div align="justify"> &nbsp;<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="10"> <tr> <td width="100%" height="10" bgcolor="#FFFF00"> <p align="center"><b> <font color="#000080" face="Arial"> E-/H/ 4/F H J' ¯3*1/G 4/F (-1'F E'DJ H 'EC'F 31'J* "F (G CD 'B*5'/ /1 JC C4H1 H J' /1 *9/'/ 2J'/J '2 C4H1G' (3*¯J (G B'(DJ* 3J'3* G'J 'B*5'/J /'1/ CG ¯2J/G EJ 4H/ H '9E'D EJ ¯1//.</font></b></td> </tr> </table> <p style="line-height: 150%"> <font size="2">/1 .5H5 9DD H "+'1 H ~J "E/G'J 'JF (-1'F GE †HF 3'J1 ,H'E9 /1 C4H1G' FJ2 '8G'1 F81G'JJ (G 9ED "E/G H 'A1'/ H ¯1HG G'J E.*DA /J/¯'GG'JJ 1' /1 .5H5 "FG' E71- 3'.*G 'F/ CG 'EC'F H'B9 FE'JJ "FG' 9E/*' (3*¯J (G 1HJ/'/G' H -H'/+J /'1/ CG /1 "JF/G G'J /H1*1 H J' F2/JC *1 1. EJ FE'J/ H D0' /1 41'J7 A9DJ FEJ *H'F /1 .5H5 "FG' H EJ2'F /B* /1 "3J( 4F'3J EH6H9 (G "2EHFJ H'B9 FE' H /1 /3*13 'G*E'E FEH/. "F†G (/JGJ '3* "F '3* CG /J/¯'GG' '2 EF'81 H 2H'J'J E.*DA F¯14 (G EH6H9 (J'F 4/G H D0' (G D-'8 'GEJ* (' *H,G (G FH9 'F¯J2G G'J /1 '1'&G CD'E '2 GE¯J E4.5J (1.H1/'1 FJ3*F/.<span lang="en-us"> </span>/1 'JF EC*H( *D'4 EJ CFJE (' *H,G (G 9DD 'HDJG EF,1 (G ~J/'J4 H 3~3 ¯3*14 EB/E*' FG †F/'F "4C'1 'JF (-1'F /1 (1.J '2 ('2'1G'J E'DJ E7'(B "F†G '2 F'-JG E3&HDJ* "F ('2'1G' H 'B*5'/G' '9D'E ¯1/J/G '3* FC*G E*A'H*J '2 "F†G *'CFHF /1 C4H1 (J'F ¯1/J/G '3* 1' E71- FE'&JE H "F 1' /1 E916 F81 H F¯'G "JF/G ~˜HGJ /1 'J1'F '3D'EJ B1'1 /GJE.</font></p> <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%"> <tr> <td width="100%" bgcolor="#FFFF00"> <p align="center"><b> <font color="#000080" face="Arial"> /1 'JF EC*H( *D'4 EJ CFJE... FC*G E*A'H*J '2 "F†G *'CFHF /1 C4H1 (J'F ¯1/J/G '3* 1' E71- FE'&JE H "F 1' /1 E916 F81 H F¯'G "JF/G ~˜HGJ /1 'J1'F '3D'EJ B1'1 /GJE.</font></b></td> </tr> </table> <p style="line-height: 150%"> <span lang="en-us"><font size="2">1</font></span><font size="2"> @ 'JF E7D( /13*J '3* CG 'E1H2G 9E/*' (H13 G'J EGE /1 *9/'/J '2 C4H1G'J *H39G J'A*G E4EHD E4CD'* 4/G 'F/ DJCF H'B9J* 'JF '3* CG 'JF F8'E ('FC/'1J H FG ('2'1 3G'E '3* CG /1 EH'1/J 3BH7 C1/G '3*. (G 9('1* /J¯1 '2 "F,' CG ('FCG' (G 'F¯J2G /1J'A* « (G1G » (J4*1 7J 3'DG'J E*9//J E('/1* (G 31E'JG ¯0'1J G'J HJ˜G H E9'ED'* 9'1J '2 '9*('1 H .DB ~HD (J 1HJG H '97'J '9*('1'* ('FCJ (' 41'J7 E4HB (G H'E ¯J1F/¯'F FEH/F/ H /1 'JF '1*('7 '2 FH9J (J 'F6('7J 3J3*EJ /1 '97'J '9*('1'* /1 (.4 E3CF (1.H1/'1 (H/F/ 9DJ1:E /1 '.*J'1 /'4*F /'1'&J G'J E97HA (G H+'JB H'E G'J '97'JJ †HF '2 JC 71A (' 'A* '124 H /'1'JJ EH',G 4/G 'F/ H '2 71A /J¯1 (' 9/E *E'JD /1J'A* CFF/¯'F H'E (G ('2~1/'.* '5D H (G1G H'G'J /1J'A*J (G .'71 '124 CE*1 /'1'&J G'J EH6H9 H+'JB /1 EB'J3G (' ('2~1/'.* *E'EJ '5D H (G1G H'E G' 1H(1H ¯1/J/G 'F/ F*H'F3*G 'F/ ¯1/4 E'DJ EH1/ '9*E'/ 3~1/G ¯0'1'F .H/ 1' *F8JE H D0' (G '4C'DJ CG *'CFHF '9D'E ¯1/J/G '3* /†'1 E4CD'* -'/ H /1 EH'1/J H14C3*¯J G'J EF-51 (G A1/ 4/F/ H †HF /1 'B*5'/ /FJ'J (GE ~JH3*G 'E1H2 FH9J 2F,J1G 3J3*EJ '1C'F FG'/G' H ('2'1G'J E.*DA *HDJ/ H ./E'* 1' (G GE E1*(7 EJ 3'2/ D0' 8'G1 4/F H *-BB 3BH7 /1 JC FB7G (G 7H1 7(J9J (G 3'J1 FB'7 3J3*E 31'J* EJ CF/ H /1/31"A1JF EJ ¯1//. /1 E',1'J '.J1 (/HF 4C 7E9 F'4J '2 /1J'A* « (G1G » (J4*1 '2 ('(* '9*('1'* '12'F BJE* H /1 EH'1/J *E/J/ /H1'F (/GJ (' F1. G'J (G1G ('D'*1 H ,GD F'4J '2 9/E 'EC'F CF*1D ('2'1 '9*('1'* E3CF (G .'71 9/E "¯'GJ (1 3'2 H C'1G'J *.1J( H *BD( G'J E'DJ E-H1J *1JF 9'ED (-1'F (H/G '3* GE ('FCG'J 31E'JG ¯0'1 CG (G ~4*H'FG .1J/ /JF '2 ('FCG'J *,'1J 'H1'B B16G EF*41 C1/G (H/F/ H GE ('FCG'JJ CG (.'71 9/E 'EC'F /1J'A* 'B3'E H'G'J ~1/'.*J (' E4CD FB/JF¯J EH',G 4/F/ (1'J C'G4 E4CD F1. G'J (G1G 1' ('D'*1 (1/F/ 'E' 9DJ1:E 'JF *EGJ/'* '124 3G'E "F G' /1 (H13 (' C'G4 EH',G 4/F/ (1'J C'G4 E4CD F1. G'J (G1G 1' ('D'*1 (1/F/ 'E' 9DJ1:E 'JF *EGJ/'* '124 3G'E "FG' /1 (H13 (' C'G4 BJE* EH',G ¯4* H (G /DJD 'GEJ* H H2F 'JF 3G'E /1 (H13 F''7EJF'FJ -'5DG 4'.5 CD 3G'E 1' /1 (H13 G'J E1*(7 (GE '1H~' H "E1JC' *-* *'+J1 B1'1 /'/.</font></p> <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%"> <tr> <td width="100%" bgcolor="#FFFF00"> <p align="center"><b> <font color="#000080" face="Arial"> /1 E',1'J '.J1 (/HF 4C 7E9 F'4J '2 /1J'A* « (G1G » (J4*1 '2 ('(* '9*('1'* '12'F BJE* H /1 EH'1/J *E/J/ /H1'F (/GJ (' F1. G'J (G1G ('D'*1 H ,GD F'4J '2 9/E 'EC'F CF*1D ('2'1 '9*('1'* E3CF (G .'71 9/E "¯'GJ (1 3'2 H C'1G'J *.1J( H *BD( G'J E'DJ E-H1J *1JF 9'ED (-1'F (H/G '3*.</font></b></td> </tr> </table> <p style="line-height: 150%"> <font size="2">/1 E,EH9 EJ *H'F ¯A* /1J'A* « (G1G » H 31.H4J H 9H'E 2/¯J F'4J '2 7E9 H /1J'A* (J4*1 "F EH,('* 41'J7J 1' /1 ('2'1 E3CF A1'GE 3'.* CG /1 :J'( *H'FEF/J ('2'1 (1'J (G *9'/D 13'FJ "F ('2'1G'J ('FCJ H E*9'B(' H '2 "F 71JB (H13 H ('2'1 3G'E (' (-1'F F'4J '2 3BH7 '124 EH',G ¯1/J/.<br> <br> 2 @ "F†G E' (' "F EH',GJE "F '3* CG /1 'B*5'/ 31E'JG /'1J (G1G '2 FB4 'F¯J24J H *F8JE CFF/¯J /1.H1J (1.H1/'1 '3* H J' D''BD 'JF¯HFG '/9' EJ 4H/. DJCF '2 "F,' CG 'JF F8'E 'B*5'/J /1 7J -J'* 7HD'FJ .HJ4 FH3'F'* H (-1'F G'J 'B*5'/J *,'1J H E'DJ (3J'1J 1' *,1(G C1/G '3* J'A*F FB4 *G/J/ CFF/G '5DJ C'1C1/ (/HF (-1'F 'JF F8'E E:AHD 'A*'/G '3*.</font></p> <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%"> <tr> <td width="100%" bgcolor="#FFFF00"> <p align="center"><b> <font color="#000080" face="Arial"> 'JF 9'ED (G1G '3* CG (1 E,EH9 (/GJ H'E ¯J1F/¯'F H -*J /HD* G' EJ 'A2'J/.</font></b></td> </tr> </table> <p style="line-height: 150%"> <font size="2">(G 9('1* /J¯1 '2 "F,' CG (' EE'13* H "¯'GJ -'5D 4/G /1 /GG G'J 7HD'FJ E9EHD' (-1'F G'J 31E'JG /'1J (G A1,'EJ '2 ,F'J* F3(J 13J/G '3* D0' ~0J14 H,H/ H C'1C1/ (-1'F /1 /H1G G'J †F/ 3'DG H 'EC'F *1EJE "F /1 'JF F8'E 'B*5'/J 'E1J ~0J1A*G *DBJ EJ ¯1// H CE*1 (G D2HE *H,G (G *'+J1 E.1( H F'(H/ CFF/G « (G1G » ~1/'.*G 4/G '3*. 'JF FC*G /13*J '3* CG /1 31E'JG /'1J *HDJ/ +1H* H /'1'JJ G'J A1'H'F '3C'F *-BB J'A*G '3* DJCF '2 "F,' CG /1 "F 1A'G CD H /'1'JJ CD (J4*1 '2 3GE 7(B'* H 'A1'/ '2 'JF 1A'G H +1H* EH6H9J* /'1/ E9EHD' EJ2'F '3*+E'1 F'4J '2 /3*E2/ CE*1 FJ1HJ C'1 H 37- BJE* G'J C'D'G' H ./E'* ('D'*1 '2 "F†G /1 AB/'F « (G1G » H,H/ /'1/ EH1/ 9F'J* B1'1 FEJ ¯J1/. E' (1 "F G3*JE CG /1 F8'E 31E'JG /'1J E1/E (1'J C'D'G' H ./E'* BJE* (J4*1 EJ ~1/'2F/ H FJ1HG'J C'1 (G 9FH'F /3*E2/ CE*1 /1J'A* EJ CF/ H E'(G 'D*A'H* "F BJE* G'J (J4*1 H 'JF /3*E2/G'J CE*1 /1 B'D( « (G1G » /1 '.*J'1 5'-('F « ~HD » G'JJ B1'1 EJ ¯J1/ CG †F/'F GE '2 H,H/ ~4*H'FG C'D'G'JJ E*F'3( (' "F G' '7EJF'F F/'1JE. 'JF 9'ED (G1G '3* CG (1 E,EH9 (/GJ H'E ¯J1F/¯'F H -*J /HD* G' EJ 'A2'J/ H (' '.*5'5 (.4 G'J EGEJ '2 '124 'A2H/G 'B*5'/ (G .H/ 37- 1A'G H 39'/* 'F3'F G' 1' C'G4 EJ /G/ G1 †F/ "EH24 H *-BJB E3D7 /1 'B*5'/JG'J 'E1H2 (' 3J71G H :D(G (D'EF'29 '/(J'* 'B*5'/ 31E'JG /'1J E(*FJ (1 (G1G GE1'G '3* DJCF (' CE'D *'3A 9DJ1:E 8GH1 (-1'F G'J EGE /1 'JF F8'E 'B*5'/J 9/G (3J'1J (G ,'J FB( 2/F (G 9EB 3J3*E H J'A*F 9D* 'D9DD E4CD'* *D'4 EJ CFF/ *' (' *-DJD G'J "F GE 'B*('3J (G 5H1* 37-J '2 EH6H9 (¯01F/ H J' -/'C+1 "F†G '*A'B EJ 'A*/ 1' '2 ":'2 *' A1,'E *(JJF H *H5JA FE'JF/.<br> <br> 3 @ « 1(' » CG (G F81 E' (G D-'8 EAGHE H C'1C1/ GE'F « (G1G » 'J '3* CG /1 'B*5'/ 31E'JG /'1J 1'J, '3* '2 3HJ GEG '/J'F *H-J/J E1/H/ '9D'E 4/G H (/JGJ '3* (' G1 AD3AG 'J CG 'JF 9/E ~0J14 '2 F'-JG ./'HF/ E*9'D 5'/1 4/G ('4/ B'(D (1B1'1J '2 71JB *H,JG'* 'B*5'/J FJ3*.</font></p> <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%"> <tr> <td width="100%" bgcolor="#FFFF00"> <p align="center"><b> <font color="#000080" face="Arial"> (G F81 E' 1J4G (3J'1J '2 E4CD'* 'B*5'/J H :J1 'B*5'/J EH,H/ /1 ,'E9G 'E1H2JF E' GE EJ *H'F/ 1J4G /1 GEJF ~/J/G (1(') H -6H1 "F /'4*G ('4/.</font></b></td> </tr> </table> <p style="line-height: 150%"> <font size="2">/1 B1"F '2 "F (G EF2DG ,F¯ (' ./' H ~J'E(1 'H 3.F (G EJ'F "E/G H /1 1H'J'* E*9// (' 4/J/*1JF H'˜G G' H EA'GJE '2 "F E0E* ¯1/J/G '3* (G F-HJ CG EJ *H'F ¯A* (/HF *1/J/ ,'E9G "DH/G (G « (G1G » /'1'J E4CD'* -'/J .H'G/ (H/ CG EECF '3* '(9'/ 'B*5'/J "F E4CD'* AB7 H,GJ '2 H,HG "F ('4/ H ¯1A*'1J G'J /J¯1J /1 B'D( ~/J/G G'J :J1 'B*5'/J /1 "F (G 8GH1 (13/ CG 1J4G /1 (G1G /'4*G ('4F/. -*J (G F81 E' 1J4G (3J'1J '2 E4CD'* 'B*5'/J H :J1 'B*5'/J EH,H/ /1 ,'E9G 'E1H2JF E' GE EJ *H'F/ 1J4G /1 GEJF ~/J/G H -6H1 "F /'4*G ('4/ E9G0' "F†G /1 'JF A15* EGE '3* "F '3* CG F8'E G'J E'DJ E(*FJ (1 '/J'F *H-J/J '2 "F ,G* CG H,H/ (G1G 1' /1 E9'ED'* (1 FEJ *'(F/ /1 H'B9 9F51J *1JF 9'ED (GE 2FF/G F8E H *HDJ/ CFF/G (-1'F H FH3'F /1 F8'E G'J 31E'JG /'1J 1' '2 EJ/'F (/1 EJ CFF/ H EJ *H'FF/ F,'* (.4 B3E* G'J 9E/G 'J '2 'B*5'/ 'JF F8'E ('4F/. /1 F8'E E'DJ E(*FJ (1 « 3H/ » H FG E(*FJ (1 « (G1G » (H FG 'D(*G E(*FJ (1 « 3H/ » G'JJ CG (' *:JJ1 DA8 '2 "FG' '1'/G « (G1G » EJ 4H/ H /1 ('2'1G'J E'DJ (HAH1 J'A*G EJ 4H/) ,'JJ (1'J H'E /'/F (G FJ* /1J'A* (G1G E9'ED'* 5H1J 3A*G ('2J (' ~HD 9/E *H,G C'ED (G ('2'1 -BJBJ C'D'G' H ./E'* .DB ~HD (.4 3H/"H1J 31E'JG ¯0'1J (' F1. (G1G 3J'3* G'J ~HDJ E(*FJ (1 ('2'1 ('2 H... H,H/ F/'1/. EH33'* 31E'JG ¯0'1J *'3J3 4/G (G 'JF EF8H1 « ~HD » 3~1/G ¯0'1'F 1' (G HC'D* '2 71A "F'F /1 ('2'1G'J 0J 1(7 (G « 31E'JG » *(/JD EJ CFF/ H /1 'JF '1*('7 (G /DJD E9J'1 F(H/F « F1. (G1G » (1'J '12J'(J 3H/"H1J ~1H˜G G' *' 2E'FJ CG ('2/GJ E+(* (1'J 31E'JG ¯0'1J H,H/ /'1/ 31E'JG ¯0'1J EJ 4H/ H (1 -,E C'D'G' H ./E'* EH1/ *B'6' EJ 'A2'J/ FH3'F'* « F1. 3H/ » GE (G H3JDG ('2'1 *9JJF EJ 4H/ H '5HD' F1. 3H/ 'F97'A ~0J1 H 4F'H1 '3* (' CE H 2J'/ 4/F "F EH33'* 31E'JG ¯0'1 /†'1 2J'F H 3H/ :J1 E*9'1A FEJ 4HF/ (DCG "F'F 51A' -B 'DHC'DG EJ ¯J1F/ H D0' 'JF 3~1/G ¯0'1'F G3*F/ CG /1 1J3C F'4J '2 E9'ED'* H'B9J H FG 5H1J A9'D G3*F/ D0' ,'JJ (1'J 7E9 H12J/F H C3( E'2'/ B79J EH1/ 417 B1'1 ¯1A*G /1 B('D B16 ~HD H,H/ F/'1/ CG (-1'F "A1JF ('4/.</font></p> <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%"> <tr> <td width="100%" bgcolor="#FFFF00"> <p align="center"><b> <font color="#000080" face="Arial"> F8'E G'J E'DJ E(*FJ (1 '/J'F *H-J/J '2 "F ,G* CG H,H/ (G1G 1' /1 E9'ED'* (1 FEJ *'(F/ /1 H'B9 9F51J *1JF 9'ED (GE 2FF/G F8E H *HDJ/ CFF/G (-1'F H FH3'F /1 F8'E G'J 31E'JG /'1J 1' '2 EJ/'F (/1 EJ CFF/ H EJ *H'FF/ F,'* (.4 B3E* G'J 9E/G 'J '2 'B*5'/ 'JF F8'E ('4F/.</font></b></td> </tr> </table> <p style="line-height: 150%"> <font size="2">'JF '2 'E*J'2'* ('2'1G'J E'DJ /1 F8'E 'B*5'/J '3D'E '3* H '-*E'D /'1/ '2 ,EDG '/DG EEFH9J* /1J'A* H ~1/'.* « (G1G » GE ('4/ ('DDG '9DE ) HDJ /1 9JF -'D AB/'F (G1G F(6 (1 GE 2FF/G "1'E4 /1 'B*5'/ 31E'JG /'1J 1' (G 3CHF EJ .H'F/ H 'JF /3*'H1/ CEJ FJ3* CG 9DJ1:E /1 /3*13 (H/F EH1/ '3*A'/G B1'1 FEJ ¯J1/ H 'D(*G .3'1* CEJ GE FJ3* CG -'5D EJ 4H/.</font></p> <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%"> <tr> <td width="100%" bgcolor="#FFFF00"> <p align="center"><b> <font color="#000080" face="Arial"> 'CFHF (.H/ (F¯1JE E' /1 'B*5'/ 'J1'F †G EJ CFJE 71A/'1'F "¯'G H J' ,'GD (G 0'* « 31E'JG /'1J » -6H1 EH33'* H ('FC G'J (3J'1J 1' (1 'B*5'/ 'J1'F *-EJD C1/G 'F/ CG /1 E3'(BG (1'J ~1/'.* 3H/G' (' F1. ('D' A6'J E7(H9'* H 13'FG EDJ H EJ'/JF H .J'('F G'J 4G1G' 1' ~1 C1/G 'F/.</font></b></td> </tr> </table> <p style="line-height: 150%"> <font size="2">4 @ 'CFHF (.H/ (F¯1JE E' /1 'B*5'/ 'J1'F †G EJ CFJE 71A/'1'F "¯'G H J' ,'GD (G 0'* « 31E'JG /'1J » -6H1 EH33'* H ('FC G'J (3J'1J 1' (1 'B*5'/ 'J1'F *-EJD C1/G 'F/ CG /1 E3'(BG (1'J ~1/'.* 3H/G' (' F1. ('D' A6'J E7(H9'* H 13'FG EDJ H EJ'/JF H .J'('F G'J 4G1G' 1' ~1 C1/G 'F/; EH33'* H ('FCG'JJ CG B79' ,2 E9,2G ¯1'F G3*F/ (' ~HDJ CG 4E' (G "FG' EJ /GJ/ -*J 81A †F/ 1H2 (G 4E' « 3H/ » EJ /GF/. E9DHE FJ3* 'JF 319* *(/JD « ~HD » (G « 31E'JG » 1' '2 C,' "EH.*G 'F/ -*J '¯1 31E'JG ¯0'1J 81A †F/ 1H2 3H/ H'B9J (/G/ B'9/*' ('J/ 3H/J ('D'J 40 /15/ /'4*G ('4/ CG (' ~1/'.* FJEJ '2 "F (G ('FCG'J E' FJE /J¯14 (1'J 'H (E'F/ H ¯1FG E9FJ F/'1/ CG 2-E* (C4/ H *HDJ/ CF/. 'H GE EJ *H'F/ /1 ('FC ~HD (3~'1/ H '2E9,2G ('FCJ '3*A'/G CF/ H -/H/ (J3* /15/ (¯J1/. 1'-* H (/HF 2-E* H 'F4''DDG « 3H/ » '3* « (G1G » GE FJ3*.</font></p> <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%"> <tr> <td width="100%" bgcolor="#FFFF00"> <p align="center"><b> <font color="#000080" face="Arial"> "J' ,'J "F FJ3* CG /1 B('D 4C3*F ('2'1 « EEFH9J* 1(' » (G H3JDG -0A « (G1G » (G *:'(F 9EJBJ CG /1 -'D 1HJ /'/F '3* (JF/J4JE. </font></b> </td> </tr> </table> <p style="line-height: 150%"><b> <font color="#000080" face="Arial">'J 5'-('F /DG'J F¯1'F "JF/G †¯HF¯J *(JJF EA'GJE '3D'EJ</font></b><font size="2"> "J' ,'J "F FJ3* CG /1 B('D 4C3*F ('2'1 « EEFH9J* 1(' » (G H3JDG -0A « (G1G » (G *:'(F 9EJBJ CG /1 -'D 1HJ /'/F '3* (JF/J4JE H EJHG EEFH9G 'J 1' CG 9'ED *HDJ/ (-1'F /1 'B*5'/ 31E'JG /'1J '3* /1 'B*5'/ .H/E'F « /1HFJ » F3'2JE.</font></div> </td> <td width="5" background="../images/center_right.gif" height="18">&nbsp;</td> <td width="5" height="18"></td> </tr> <tr> <td width="5" height="18"></td> <td width="4" background="../images/center_left0.gif" height="18">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="18" align="justify"> </td> <td width="5" background="../images/center_right.gif" height="18">&nbsp;</td> <td width="5" height="18"></td> </tr> <tr> <td width="5" height="18"></td> <td width="4" background="../images/center_left0.gif" height="18">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="18" align="justify"> <p align="center"> <font color="#800000" size="2">EF(9: 3'Ì* 'DA EH1. 7/8/87</font></td> <td width="5" background="../images/center_right.gif" height="18">&nbsp;</td> <td width="5" height="18"></td> </tr> <tr> <td width="5" height="18" dir="rtl"></td> <td width="4" background="../images/center_left0.gif" height="18" dir="rtl">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="18"> <form method="POST" action="http://www.tarikhaneh.com/Farsi/Contact/email.php" dir="rtl"> <p style="margin-top: 0; margin-bottom: 0" align="right" dir="rtl">&nbsp;</p> <p style="margin-top: 0; margin-bottom: 0" align="right" dir="rtl"> <font color="#000080"><span style="font-size: 9pt">F81 4E' /1('1G 'ÌF E7D(</span></font></p> <p style="margin-top: 0; margin-bottom: 0" align="right" dir="rtl"> <font color="#000080"><span style="font-size: 9pt">&nbsp;</span></font></p> <div align="center" dir="rtl"> <center dir="rtl"> <div align="right"> <table border="0" cellpadding="0" style="border-collapse: collapse" width="42%" height="20" bordercolor="#000000" id="table2" dir="rtl"> <tr> <td height="23" width="36%" style="font-family: Tahoma; font-size: 9pt" dir="rtl"> <p style="margin-top: 0; margin-bottom: 0" align="right" dir="rtl"> <font face="Tahoma">&nbsp;<span lang="fa">F'E H F'E .'FH'/¯Ì</span></font></td> <td height="23" width="64%" style="font-family: Tahoma; font-size: 9pt" dir="rtl"> <p style="margin-top: 0; margin-bottom: 0" align="center" dir="rtl"> <font face="Tahoma"> <input type="text" name="name" size="30" style="font-family: Tahoma; font-size: 8pt"></font></td> </tr> <tr> <td height="12" width="36%" style="font-family: Tahoma; font-size: 9pt" dir="rtl"> <p style="margin-top: 0; margin-bottom: 0" align="right" dir="rtl"> <font face="Tahoma">&nbsp;<span lang="fa">"/13&nbsp; 'ÌEÌD</span></font></td> <td height="12" width="64%" style="font-family: Tahoma; font-size: 9pt" dir="rtl"> <p style="margin-top: 0; margin-bottom: 0" align="center" dir="rtl"> <font face="Tahoma"> <input type="text" name="email" size="30" style="font-family: Tahoma; font-size: 8pt"></font></td> </tr> <tr> <td height="23" colspan="2" style="font-family: Tahoma; font-size: 9pt" dir="rtl"> <p style="margin-top: 0; margin-bottom: 0" align="right" dir="rtl"> <font face="Tahoma">&nbsp;<span lang="fa">F81'* 4E':</span></font></td> </tr> <tr> <td height="23" colspan="2" style="font-family: Tahoma; font-size: 9pt" dir="rtl"> <p align="center" dir="rtl"> <font face="Tahoma"> <textarea rows="4" name="Comments" cols="49" style="font-family: Tahoma; font-size: 8pt"></textarea></font></td> </tr> </table> </div> </center> </div> <p style="margin-top: 0; margin-bottom: 0" align="right" dir="rtl"> <input type="submit" value="'13'D '7D'9'*" style="font-family: Tahoma; font-size: 8pt"> <input type="reset" value="~'© ©1/F " style="font-family: Tahoma; font-size: 8pt"> </form> <p dir="rtl" style="text-align: center">&nbsp;</td> <td width="5" background="../images/center_right.gif" height="18" dir="rtl">&nbsp;</td> <td width="5" height="18" dir="rtl"></td> </tr> <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"> <a href="../../dr.sobhani/index.htm" style="text-decoration: none; font-weight: 700"> <font color="#FF0000" size="2">('2¯4*</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">5253699</font></td> </tr> <tr> <td dir="rtl" valign="top"> <hr></td> </tr> </table> <table border="0" cellpadding="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="42"> <tr> <td width="100%" height="42" dir="ltr" valign="top"> <table border="0" style="border-collapse: collapse" width="100%"> <tr> <td background="../images/backheadcenter.gif" dir="rtl" style="margin-top: 0; margin-bottom: 0"> <p align="right"> <font color="#FFFFFF" style="font-size: 8pt"> <span lang="en-us">&gt; </span>DJF©G'Ì E1(H7 (G 'JF 5A-G</font></td> </tr> </table> <table border="0" style="border-collapse: collapse" width="100%" height="2700"> <tr> <td height="14"> <p align="center" dir="rtl"></td> </tr> <tr> <td height="2999"> &nbsp;</td> </tr> <tr> <td height="1"> </td> </tr> <tr> <td height="2"> </td> </tr> <tr> <td height="2"> <p align="center"><font size="1">*9/'/ ('2/Ì/ ©FF/¯'F '2 'ÌF 3'Ì*</font></td> </tr> <tr> <td height="2"> <font face="Tahoma" size="2" color="#FFFF00"> <iframe name=I1 src='http://stats.netsups.com/counter.asp?id=462197351&cnum=001fa&ref=" + document.referrer + "' align=center frameborder=0 scrolling=no width=151 height=12 marginheight=0 marginwidth=0></iframe> </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 © 200<span lang="en-us">5-</span>200<span lang="en-us">8</span> <a href="file:///G:/my%20new%20document/My%20Webs/INDEX.HTM" style="text-decoration: none; "> <font color="#FFFFFF">Tarikhaneh.com</font></a> all right reserved .all graphics copy right by<span lang="en-us"><a style="text-decoration: none" href="mailto:tarikhaneh2002@yahoo.com?subject=from site"> <font color="#FFFFFF">tarikhaneh</font></a></span></font></td> </tr> </table> <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> </body> </html>