ÿþ<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>/©*1 3(-'FÌ: /1"E/G'Ì 'FA'D ('Ì/ (G .2'FG H'1Ì2 4HF/ </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"> :: /©*1 3(-'FÌ: /1"E/G'Ì 'FA'D ('Ì/ (G .2'FG H'1Ì2 4HF/</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"> <p class="MsoNormal" dir="rtl"> <font size="2"> <span style="color: #0000FF">'4'1G: GEH'1G </span> <span lang="FA" style="color: #0000FF; "> /1 ~'J'F ',1'I (1F'EG G' 4'G/ 'JF G3*JE ©G "F†G ~J4 (JFI ©1/G</span><span style="color: #0000FF; "> </span> <span lang="FA" style="color: #0000FF; "> (H/JE (' "F†G ©G '*A'B 'A*'/G (H/ 2EJF *' "3E'F A1B /'1/. 3F/ †4E 'F/'2</span><span style="color: #0000FF; "> </span> <span lang="FA" style="color: #0000FF; "> ,EGH1I '3D'EI /1 'AB (J3* 3'DG */HJF 4/G '3*. (1F'EG †G'1E *H39G</span><span style="color: #0000FF; "> </span> <span lang="FA" style="color: #0000FF; "> (1'JF '3'3 71'-I 4/G H (1'3'3 'JF 71'-I (H/,G G'I 3FH'*I *F8JE </span></font> <span lang="FA" style="color: #0000FF; "> <font size="2">EI 4H/ .'¯1 B1'1 ('4/ "F†G ©G ',1' EI 4H/ (' "F†G ©G /1 B'FHF (G 9FH'F E9J'1 H ED'© 9ED©1/ EI ('4/- "F†F'F ©G /1 3'D G'I ¯04*G 4'G/ (H/JE- "FB/1 2J'/ ('4/ ©G F*H'F 'F7('BI (1'I "F J'A* "J' 13J/F (G "F 'G/'A E*9'DI 'E©'F ~0J1 '3* (G GEJF EF8H1 B3E*I '2 ¯A*¯HI .H/ (' /©*1 -3F 3(-'FI 1' (G 'JF EF8H1 '.*5'5 /'/JE ©G /1 0JD '2 F81 EI ¯01'FJ/.</font></span></p> <p> </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="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"> <span lang="FA" style="COLOR: #008000; "> <font size="2"> <img border="0" src="../images/dr.sobhani7.jpg" width="110" height="126" align="right" alt="/©*1 -3F 3(-'F&#1740; @ FE'&#1740;F/G E1/E /'E:'F">4E' (G D2HE *:JJ1'* 3'.*'1I /1 FG'/G'I E.*DA ©4H1 '4'1G ©1/J/. (1F'EG 20 3'DG ©4H1 /1 †G'1 (1F'EG ~F, 3'DG H G1 (1F'EG ~F, 3'DG (G ~F, (1F'EG J© 3'DG *B3JE EI 4H/. /HD* G1 3'DG (H/,G 3'D (9/ 1' */HJF H (G E,D3 *3DJE EI ©F/. D0' (H/,G G'I 3FH'*I FB4 EH+1 H :J1B'(D 'F©'1I /1 EHABJ* 3F/ †4E 'F/'2 /'1F/. (' *H,G (G 'JF©G /1 2E'FI (G 31 EI (1JE ©G (-+ G'I E1(H7 (G (H/,G 3'D G4*'/ H 44 /': '3*  3'.*'1 (H/,G FHJ3I ©4H1 E' 1' *' †G 'F/'2G ©'1"E/ H E*F'3( (' E9J'1G'I B'FHFI H 9DEI EI /'FJ/ "J' 1H4 (H/,G FHJ3I E' F('J/ *:JJ1 ©F/ </font></span> <p class="MsoNormal" dir="rtl"> <span lang="FA" style="COLOR: black; "> <font size="2">/1 J© ,EDG ('J/ (¯HJE (DG ('J/ *:JJ1 ©F/. HB*I 5-(* '2 'JF EI 4H/ ©G *.5J5 (GJFG EF'(9 /1 H8'JA 3'2E'F E/J1J* H (1F'EG 1J2I ©4H1 FG'/JFG 4H/  /1 "F 5H1* .H/ (G .H/ 3F/ (H/,G /3*.H4 *:JJ1'* 98JEI B1'1 EI ¯J1/. '¯1 9BD'FJ* H /:/:G -A8 GHJ* E71- ('4/  /1 "F 5H1* 4E' /1 '3F'/ (H/,G '1B'E :J1 B'(D *A3J1  (I 'F6('7I G'I H3J9 E'DJ  9/E ~'3.¯HJJ  H,H/ E,H2G'I A1'H'FI ©G *-* 9FH'F *(51G G'I B'FHFI /1 (H/,G ©G G1 FH9 F8'1*I '2 /JH'F E-'3('* 3D( EI ©F/  H,H/ F.H'G/ /'4* 'JFG' E9DHD 41'J7 A9DI E'3*. ('J/ (G 9DD (G 5H1* '3*1'*˜J© F¯'G ©1/. *HB9 'JF©G (' -A8 H69 EH,H/ J© 3F/ (H/,G 'I /1 '.*J'1 E' B1'1 (¯J1/ ©G /1 'JF 3F/ (H/,G *-HDI 'J,'/ 4H/  :J1B'(D (1"H1/G ©1/F '3*. HB*I ©G /1 7(J9I *1JF ©'1  '/'1G 'B*5'/ 1' (G H3JDG EGF/3JF 'F,'E EI /GJ/  F('J/ 'F*8'1 *-HD'* (21¯ 1' /'4*G ('4JE. 'JF F¯'G ©G E' AB7 F¯P0'1JE 1H2E1¯I G'JE'F (/*1 4H/ .H( '3*. </font></span></p> <p class="MsoNormal" dir="rtl"> <span lang="FA" style="COLOR: #008000; "> <font size="2">J©I '2 E4©D'* 9E/G E' /1 (H/,G FHJ3I :J1-BJBI (H/F '9/'/ H '1B'E /1 1/JA G'I /1"E/I H G2JFG 'I '3* ©G .H/ E4©D'* 9/J/G 'I 1' (G GE1'G /'1/. 'JF E4©D F'4I '2 †J3*</font></span></p> <p class="MsoNormal" dir="rtl"> <span lang="FA" style="COLOR: black; "> <font size="2">F-HG ©'1©1/G'I E'DI E'  E' 1' (G 3E* 'G/'AE'F FEI 13'F/. E' *-BJB' (' 9DE (G 'JF©G G2JFG G'JE'F 2J'/ '3*  (1"H1/G'I /1"E/I 1' ('D' E-'3(G EI ©FJE. EF A©1 FEI ©FE ©G E' /1 (1"H1/ /1"E/ /B* G'I D'2E 1' (G ©'1 EI ¯J1JE H (' 5/'B* ~J4 (JFI EI ©FJE HDI /1 9ED *-HD'* ','2G FEI /G/ ©G E' (G G/AG' (13JE. G2JFG G'I E' 2J'/ '3* H /1"E/G'I E' ©A'A G2JFG G' 1' FEI ©F/. (G GEJF /DJD /1"E/G' 1' (J4 '2 -/ H'B9I (1"H1/ EI ©FJE *' (G J© *H'2FI /1 (H/,G /3* J'(JE. D0' E4©D /1 G2JFG G'3*. 'JF©G †1' G2JFG G' 2J'/ '3* ('J/ ¯A* E' GEG 'EH1 .H( 1' J©,' EI .H'GJE. /1 -'DI ©G (H/,G /1 0'* .H/4 -3'( ©4J  'F*.'( H ¯2JF4 1' /'1/. '¯1 E' ©E(H/ EF'(9 F/'4*JE /J¯1 D'2E F(H/ ©G (H/,G ((F/JE. /1 "3*'FG (3*F (H/,G H2'1*.'FG G' J©31I H8'JA ,/J/ (1'I .H/ *91JA EI ©FF/ H "F 1' /1 B'D( *(51G 9FH'F EI ©FF/ H (G 'J,'/ H8'JA ,/J/  ~HD H (H/,G ,/J/I /1J'A* EI ©FF/. (G 9('1* /J¯1 'JF H8'JA ,/J/ 51A' (1'I /1J'A* ~HD '3*. J©I /J¯1 '2 9H'EDI ©G -,E G2JFG G' 1' 'A2'J4 EI /G/  H9/G G'I ¯3*1/G H G2JFG (1 E1/E '3*. (G F81 EF 'JF J© *9'1A (' ,'E9G '3* ©G E' (¯HJJE EI .H'GJE E3&DG (F2JF 1' -D ©FJE  /1 9JF -'D GE (F2JF 1' (G E1/E '12'F (/GJE H GE (G "FG' (¯HJJE G1†G .H'3*J/ E51A ©FJ/. 'D(*G (F/G 71'- '5DI 71- '5D'- E'/G 3G B'FHF (1F'EG G3*E ©G E*'3A'FG (G 7H1 :D7 H 'D(*G 3J'3I (G 71- *+(J* BJE*G' E91HA 4/. E' G2JFG G' 1' (G .'71 (96I .H4"E/G' ('D' (1/JE. EF E9*B/E '¯1 E' 'JF E3'&D 1' (G 1H4FI (G E1/E *H6J- /GJE "FG' FG *FG' .H44'F FEI "J/ (D©G '2 4JHG G'JI ©G E' (G ©'1 EI (1JE F'1'-* EI 4HF/. :J1 '2 'JFG' FG'/G'JI G3*F/ ©G /1 2J1 E,EH9G /HD* B1'1 /'1F/ H E/'E G2JFG *1'4I EI ©FF/. 4E' HB*I ','2G *'3J3 FG'/G' H EH33'* "EH24 9'DI ~˜HG4I 1' (G (1.I FG'/G'I 2J1/3*I EI /GJ/ H "FG' A'1: '2 'JF©G G2JFG "FG' †G EI 4H/  *4©JD'* ,/J/I 1' 'J,'/ EI ©FF/ H G2JFG G'I "F (G (/FG /HD* *-EJD EI 4H/ .</font></span></p> <p class="MsoNormal" dir="rtl"> <span lang="FA" style="COLOR: #008000; "> <font size="2">J© B3E* '2 1/JA G'I G2JFG (1 E'  ~1H˜G G'I 9E1'FI '3*. 7(B B'FHF (H/,G 'I 41©* (1'I 'F,'E ©'1G'I 9E1'FI 'F*A'9I '2 /HD* EI ¯J1F/  H'E E-3H( EI 4H/ EI ('J3* '5D ~HD (G GE1'G 3H/ (G .2'FG H'1J2 4H/ 'E' E' 4'G/ G3*JE ©G (3J'1I '2 'JF ©'1A1E'J'F FG *FG' GJ† 3H/I 1' (G .2'FG H'1J2 F©1/G 'F/ (D©G '5D ~HD 1' GE F~1/'.*G 'F/.</font></span></p> <p class="MsoNormal" dir="rtl"> <span lang="FA" style="COLOR: black; "> <font size="2">(DG  FG *FG' ('2~1/'.* "FG' 5A1 '3* (D©G G1 3'D GE (' ~J4FG'/ /HD* H /1 (96I EH'1/ (' ~J4FG'/ FE'JF/¯'F '2 (H/,G 9E1'FI E('D: 2J'/I (G 'JF B(JD 41©* G'I 'F*A'9I 3~1/G EI 4H/. HB*I ©G 'G*E'E (G -3'( ©4I FJ3* H 'JF '9*B'/ H,H/ /'1/ ©G (G G1 /DJDI ('J/ (G 41©*G' ~HD /'/G 4H/  (/HF "F©G -3'(©4I 5H1* (¯J1/  'JF E96D GEH'1G '/'EG .H'G/ /'4*. 'D(*G 41©* G' GE '3*/D'D G'JI /'1F/ ©G BJE* ¯0'1I ('9+ EI 4H/ ©G .3'1'* "FG' 2J'/ 4H/. HDI 'JF -1A B'(D B(HD FJ3*. †HF E' /1 B'FHF '5D'- E'/G 3G B'FHF (1F'EG ©G (G *+(J* BJE* FG ©'D'I 'F-5'1I /HD*I 'B/'E ©1/G 'JE  0©1 ©1/G 'JE G1 41©*I ©G E9*B/ '3* BJE* EH,H/ (1'I "F 41©* (G 51AG FJ3* (' '/DG 'B*5'/I *' 4G1JH1 G1 3'D (G /HD* D'J-G (/G/ H /1 /H 3'DI ©G ¯04*G GJ† 41©*I /1 'JF .5H5 D'J-G 'I F/'/G '3* ©G (' ©E(H/ EH',G 4/G '3*. -'D †¯HFG 'JF *F'B6 1' EI *H'F -D ©1/ '2 J© 71A (' F/'/F D'J-G EI ¯HJF/ (' ©E(H/ EH',G F4/G 'JE H /1 ,'I /J¯1 EI ¯HJF/ BJE*I ©G H69 4/G ©E*1 '2 BJE* *E'E 4/G '3*. </font></span></p> <p class="MsoNormal" dir="rtl"> <span lang="FA" style="COLOR: #008000; "> <font size="2">J©I '2 E96D'*I ©G E' †G /1 /HD* H †G /1 E,D3 (' "F EH',G G3*JE  (-+ †'FG 2FI '3*. (' 'JF E96D †G ('J/ ©1/</font></span></p> <p class="MsoNormal" dir="rtl"> <span lang="FA" style="COLOR: black; "> <font size="2">†'FG 2FI G'I /HD*I G' H E,D3I G' B(D '2 "E/F (H/,G (G E,D3 ~11F¯ '3*. /1 E,D3 (G /DJD 'JF©G (H/,G (3*G 4/G '3* 'E©'F *:JJ1 H *-HD 2J'/I H,H/ F/'1/. †'FG 2FI EF,1 (G 3H!*.5J5 EF'(9 EI 4H/ H (I 9/'D*I 1' (JF EF'7B /'EF EI 2F/. </font></span></p> <p class="MsoNormal" dir="rtl"> <span lang="FA" style="COLOR: #008000; "> <font size="2">4E' (G (-+ G2JFG G' ~1/'.*J/ H '4'1G ©1/J/ ©G 9E/G E4©D (H/,G E' /1 G2JFG G'3*. 'E' (G F81 EI 13/ ©G E' H69J* .H(I /1 1/JA /1"E/I GE F/'1JE. ¯2'14 G'I /JH'F E-'3('* F4'F EI /G/ 1BEI ©G (G 9FH'F /1"E/ /1 (H/,G +(* EI 4H/ .JDI ©E*1 '2 "F †J2I '3* ©G ('J/ E-BB 4H/ .'3F'/ H E/'1© H ¯2'14 G'I /JH'F E-'3('* F4'F EI /G/ ©G *E'E /1"E/G'I EDI (G .2'FG H'1J2 FEI 4H/. F81 4E' †J3*</font></span></p> <p class="MsoNormal" dir="rtl"> <span lang="FA" style="COLOR: black; "> <font size="2">GE'F 7H1 ©G EI /'FJ/ /1"E/G' /1 (H/,G (G 3G (.4 7(BG (F/I EI 4H/. J©I /1"E/G'I E'DJ'*J  J©I FA*I H /J¯1I 3'J1. /1 'JF 3'DG' E9EHD' /1"E/G'I E'DJ'*I H /1"E/G'I F'4I '2 FA* E-BB 4/G '3*. (.4I ©G ©E*1 E-BB EI 4H/ (.4 3'J1 '3*. /1 .5H5 /1"E/G'I 41©* EDI FA* ED'-8'*I H,H/ /'1/. E'DJ'* H /1"E/ FA* H 3'J1 /1 EF'(9 (H/,G 9EHEI /HD* H'1J2 EI 4H/. (H/,G 41©* G'I /HD*I (G D-'8 EF'(9 ,/'3*. J© '.*D'A F81I H,H/ /'1/ ©G "J' /1"E/ 41©* G'I /HD*I (G -3'( .2'FG /'1I ©D H'1J2 4H/ H '¯1 (G 'JF -3'(G' H'1J2 4H/ "J' (G "F FH9 '2 -3'( G'JI H'1J2 EI 4H/ ©G /1"E/ 9EHEI (G "FG' '7D'B EI 4H/ J' ('J/ (G -3'( G'I .2'FG /'1I ©D '2 "F FH9 -3'( G'JI ©G /1 '.*J'1 .H/ 41©*G'3* H'1J2 4H/. /1 (H/,G G4*'/ H †G'1 ©G EF E3&HD ©EJ3JHF (H/,G (H/E (' 4H1'I E-*1E F¯G('F /1 'JF 2EJFG (-+ G'I EA5DI 5H1* ¯1A* (1.I '2 '96'I 4H1'I F¯G('F /1 ,D3'* ©'1¯1HG 4H1' B'&D (G 'JF (H/F/ ©G /1"E/ 41©* G'I /HD*I /1"E/ /HD* FJ3* H D0' *,HJ2 EI ©1/F/ ©G (G -3'( G'I .H/ 41©* G'I /HD*I H'1J2 4H/ .'¯1 (.H'GJE 'JF 1' ED'© (¯J1JE B'9/*' ('J/ (' '-*J'7 (J4*1I /1 'JF .5H5 5-(* ©1/ ©G †1' 41©* G'I /HD*I /1"E/G'I .H/ 1' (G -3'( /1"E/G'I 9EHEI H'1J2 FEI ©FF/. (F/G 4.5' B'&D G3*E ©G /1"E/ 41©* G'I /HD*I ©G '2 EF'(9 *,/J/F'~0J1 '3*A'/G EI ©FF/ E+D FA* H ¯'2 ('J/ (G -3'( /1"E/ 9EHEI H'1J2 4H/. 'E' (1F'EG 1J2'F ('J/ HBHA /'4*G ('4F/ ©G G2JFG G'I ,'1I H 31E'JG 'I 'JF 41©*G' 1' (G FH9I *'EJF ©FF/ *' B'(DJ* "FG' /1 37- (JF 'DEDDI ./4G F~0J1/ .</font></span><p class="MsoNormal" dir="rtl"> <span lang="FA" style="color: #008000"> <font size="2">7(B †G B'FHFI /1"E/G'I F'4I '2 FA* H ¯'2 ('J/ (G -3'( G'I .H/ /HD*G' H FG -3'( .2'FG H'1J2 4H/ 7(B '5D ~F,'G H 3G 'JF /1"E/G' ('J/ (G .2'FG H'1J2 4HF/</font></span></p> <p class="MsoNormal" dir="rtl"> <span lang="FA" style="color: black"> <font size="2">EA31 B'FHF '3'3I 4H1'I F¯G('F '3*. /1 ©'1¯1HG 4H1' (96I '2 '96'I 4H1' *A3J14'F 'JF FJ3* ©G 4E' EI ¯HJJ/. (1/'4* *.55I EF 'JF '3* ©G 'JF ¯HFG 41©* G' /HD*I ('J/ /1"E/G'I F'4I '2 +1H* EDI (' ©31 G2JFG G'I 5H1* ¯1A*G 1' (G .2'FG H'1J2 ©FF/. +1H* EDI ('J/ /1 (H/,G 9EHEI B1'1 ¯J1/ *' 51A *HDJ/ +1H* G'I ,/J/ 4H/ .</font></span></p> <p class="MsoNormal" dir="rtl"> <span lang="FA" style="color: #008000"> <font size="2">E' /1 '3D'E '5DI (G F'E 'FA'D /'1JE ©G +1H* G'I EDI 1' E*9DB (G -©HE* '3D'EI EI /'F/. (' '3*F'/ (G 'JF '5D "J' F('J/ /1"E/G'I F'4I '2 A1H4 FA* (G .2'FG H'1J2 4H/</font></span></p> <p class="MsoNormal" dir="rtl"> <span lang="FA" style="color: black"> <font size="2">'5HD' '5D †GD H ~F, /1 B'FHF '3D'EI 'FA'D 1' /1 '.*J'1 -©HE* '3D'EI B1'1 /'/G H EI *H'F (' '3*F'/ (G 'JF '5D ¯A* ©G 'JF B(JD /1"E/G' ©G ,2! 'FA'D G3*F/ ('J/ (G .2'FG H'1J2 4HF/.</font></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"> <p align="center"> <font size="2" color="#800000">¯A*¯H '2 9('3 .31H'FÌ</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="17"></td> <td width="4" background="../images/center_left0.gif" height="17">&nbsp;</td> <td width="560" dir="rtl" valign="top" height="17" align="justify"> <p align="center"> <font size="2" color="#800000">EF(9: H( 3'Ì* <a href="http://www.irib.ir/Economy/index.htm"> 'B*5'/ H 13'FG</a> H'(3*G (G 4H1'Ì 'B*5'/Ì 3'2E'F 5/' H 3ÌE'Ì ,EGH1Ì '3D'EÌ </font></td> <td width="5" background="../images/center_right.gif" height="17">&nbsp;</td> <td width="5" height="17"></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"><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-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="1623"> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="195"> &nbsp;</td> </tr> <tr> <td height="19"> &nbsp;</td> </tr> <tr> <td height="12"> <p dir="rtl" align="center"><font size="1">*9/'/ ('2/Ì/ ©FF/¯'F '2 'ÌF 5A-G</font></td> </tr> <tr> <td height="22"> <p dir="rtl" align="center">&nbsp;<script type=text/javascript> document.write("<iframe name=nspcounter src='http://stats.netsups.com/counter.asp?id=1814744511&cnum=001fa&ref=" + document.referrer + "' align=center frameborder=0 scrolling=no width=151 height=12 marginheight=0 marginwidth=0></iframe>") </script> </td> </tr> <tr> <td height="1"> </td> </tr> <tr> <td height="1"> </td> </tr> <tr> <td height="12"> <p align="center"><font size="1">*9/'/ ©D ('2/Ì/ ©FF/¯'F '2 'ÌF 3'Ì*</font></td> </tr> <tr> <td height="24"> <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>