ÿþ<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-Type" content="text/html; charset=unicode"> <title>EB'DG /©*1 3(-'FÌ /1 1H2F'EG ,EGH1Ì '3D'EÌ: (B'Ì'Ì E4©D'* H 2H'D E-©E'* </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">EB'DG /©*1 3(-'FÌ /1 1H2F'EG </span></font><span lang="fa"> <font color="#FFFFFF">,EGH1Ì '3D'EÌ: (B'Ì'Ì E4©D'* H 2H'D E-©E'*</font></span></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"> <font class="f5" color="red"> <font class="f6" color="#aa00f0"> <font class="f4" color="#330000"> <font class="f3" size="2">"3J( 4F'3J *G/J/'* E97HA (G FG6* G'J ',*E'9J H 'FBD'( G'J *'1J. H (113J G1 "F†G CG *-HD'* 9EJB /1 2F/¯J (41 1' EH1/ *G/J/'* 6EFJ H J' *G',E'* -1JE B1'1 EJ /G/ GEH'1G ('J/ JCJ '2 /:/:G G' H /D F¯1'FJ G'J C3'FJ ('4/ CG -1C* /1 E3J1 5-J- H '5HDJ 1' E7'(B 6H'(7 H EB11'* F'4J '2 'J/&HDH˜J 'FBD'( H J' EFA9* G'J E5D-'FG ~J¯J1J EJ FE'JF/ H .H/ /1 *D'4 G3*F/ *' 'F-1'AJ '2 'G/'A 'HDJG H '5HDJ 1. F/G/. "F'F /1 'JF E3J1 ¯1A*'1 'FH'9 F'ED'JE'* H "D'E H (J EG1J G' GE EJ 4HF/. /DJD "FGE H'6- '3* E9EHD' ¯0'1 3'DG'J 7HD'FJ '2 JC 'FBD'( H ,'(,' 4/F F3D G'J EH+1 /1 C'1 H *D'4 H *5EJE ¯J1J H /1 '.*J'1 ¯1A*F E/J1J* G'J CD'F H '5DJ C4H1 *H37 C3'FJ CG /H1'F 'FBD'( 1' /1C FC1/G H /D /1 *4HJ4 H F¯1'FJ G'J /H1G *CHJF H *HDJ/ -1C* G'J ',*E'9J F/'4*G 'F/ GE1'G (' *-HD'* ~J1'EHFJ FG6* G' H /1 EH'1/J E4CD'* H *F¯F'G'J E97HA (G 'FBD'( 2EJFG G'J C'1C1/ EH+1 (1'J *G/J/'* 1' A1'GE EJ "H1F/ H (/JGJ '3* 'F*8'1 /'4*G ('4JE *' /D3H2'F '5DJ -1C* 'FBD'(J /1 -'DJCG FG'J* 'G*E'E .H/ 1' (C'1 ¯1A*G 'F/ H '2 *E'EJ *H'F '3*9/'/ H 'EC'F'* /1 '.*J'1 .HJ4 (1'J ,DH¯J1J '2 *'+J1 *G/J/'* E'JG ¯0'4*G 'F/ ('2 GE /1 EH'1/J 'EC'F ,DH¯J1J '2 (96J '2 "3J( G'J H'1/G (1 FG6* H '5HD 'FBD'(J "F 1' F/'4*G ('4F/. <br> 'JF EGE /1 .5H5 *-HD'* 9EJB ',*E'9J @ 3J'3J E1(H7 (G FG6* G'J 'F(J' 'DGJ 1. /'/G '3* H (7H1 '5HDJ /1('1G 3'J1 'B/'E'* 'FBD'(J H E5D-'FG H (41/H3*'FG CG FH9 (41 FJ2 (' GEG C'3*J G'J EH,H/ "F G' 1' 3'E'F /'/G FJ2 E4'G/G ¯1/J/G '3* . (G 9('1* /J¯1 *G/J/'* /1 .5H5 'FBD'( '3D'EJ 'J1'F GE (G 5H1 E.*DA H /1 E6'EJF E*9// H,H/ /'4*G H /'1/ H (3J'1 ,'J "F /'1/ CG /D3H2'F (B'J 'FBD'( (1 E-H1G' H '5HD '3*1'*˜JC .H/ CG .H4(.*'FG (3J'1 GE G3*F/ EH6H9 -3'3 H 31FH4* 3'2 *G/J/'* 1' 15/ C1/G H '2 EH+1 F(H/F H J' .F+J 4/F B79J "F G' '7EJF'F D'2E 1' (/3* "H1F/. (1'J F'&D 4/F (G 'JF EB5H/ (G F81 EJ 13/ D-'8 (1.J '2 ('J3*G G'J EGE CG (G "F G' '4'1G EJ 4H/ 1' ('J/ EH1/ 9F'J* B1'1 /GJE . <br> 1 @ B'9/*' †FJF 1. EJ /G/ CG 49'1G' H E7'D( *:0JG CFF/G '-3'3'* H .H'3*G G'J "FJ H 2H/¯01 H /1 E,EH9 EH'1/ H E5'/JBJ '2 'EH1 G1 'FBD'( CG (G *E'JD'* *H/G G'J E1/E 31J9 *1 ~'3. EJ ¯HJ/ (J4*1 '2 "F†G CG *:0JG CFF/G *9BD'* H .H'3*G G'J (DF/E/* H E'F/FJ '3* EH1/ 9F'J* B1'1 EJ ¯J1/. EF7B (-+ GE /13* '3* 2J1' G1 ,'E9G 'J 9D'BEF/ '3* (1 '+1 *-HD 'J,'/ 4/G *:JJ1'*J 1' /1 2F/¯J .HJ4 ((JF/ H (G (1.J '2 F'ED'JE'* EH,H/ ~'J'F /G/ H E*,'H2'F (G -BHB E1/E 1' E,'2'* FEH/G H E,EH9G 'J '2 E7DH( G'J .HJ4 1' E-BB FE'J/. 'JF '3* CG /1 *-HD'* (21¯ 3GE 49'1 H '-3'3 E9EHD' (3J'1 A1'*1 '2 3GE 49H1 H '/1'C '3* . 'D(*G 'JF (G E9FJ 2'&/ (H/F H J' (J .'5J* (H/F 49'1 FJ3* (DCG (G E9FJ "F '3* CG /1 "3J( 4F'3J *G/J/'* ('J/ (G EJ2'F H BDE1H H FB4 H /'EFG *'+J1 H GE†FJF FH9 C'1C1/ *G/J/'* '2 F'-JG 49'1G' H '-3'3'* *H/G G'J E1/E *H,G /'4*G ('4JE H ~J¯J1J FE'&JE . <br> "F†G CG *-* 9FH'F 49'1 (1'J 41H9 C'1 H (3J, ,'E9G EH1/ FJ'2 (H/ H (9/G' ('J/ E(/D (G 49H1 EJ 4/ *' /1 ¯01 2E'F C'1C1/G' H 'F*8'1'* EB*6J H E*F'3( (' *-HD'* /1 2E'F H EC'F 1' (J'(/ *' †G 'F/'2G E4EHD 'JF EGE ¯1/J/G '3* . 'D(*G H (/HF 4C 'EH1J '2 '5HD EGE G1 FG6* CG /1 B'D( 49'1 H .H'3*G 9EHEJ E71- ¯1/J/G '3* GEH'1G (G FG'/G'J ~'J/'1 H E5'/JB 49H1 H '/1'C E(/D ¯1/J/G 'F/ DJCF FEJ *H'F '2 E*5D( (H/F (1.J '2 E7'D( '-3'3J H 49'1J CG /1 0GFJ* "-'/ ,'E9G (1'J .H/ ,'J E7E&FJ 1' ,3*,H C1/G 'F/ :AD* C1/ H F3(* (G 37-J E'F/F "F 'EH1 H /1 F*J,G ~J/' FC1/F 2EJFG H A15* (1'J C'1C1/ EF'3( H EB*6J 2E'F H EC'F '2 "F G' J'/ FC1/. <br> E' E9*B/JE CG /1 ,EGH1J '3D'EJ 'J1'F GE (3J'1J '2 E4CD'* (171A F4/G EH,H/ 1J4G /1 GEJF /1 37- (H/F H 9/E 'G*E'E D'2E (1'J *9EJB EH6H9 H /1 F*J,G 9/E '*.'0 1HJC1/G'J E*F'3( /'1/. (G 9('1* /J¯1 EECF '3* EH6H9'* (3J'1J 1' (1'J /GG G'J E*E'/J /1 -1A H 49'1 /F('D C1/G ('4JE H (' 5/'B* H ,/J* (1 "F ¯A*G G' GE ('H1 C1/G H (1 E-H1 "F G' E'F/G ('4JE DJCF 9/E *9G/4 (1'J *,/J/F81 /1 "F ¯A*G G' H *-HD'* -'/+ 4/G /1 ,'E9G E' GE†FJF C4H1G'J /J¯1 41'J7J 1' A1'GE C1/G ('4/ CG /1 -'DJCG E' (1 (J'F H 2('F .HJ4 .H'3*G 'J 1' E71- EJ 3'2JE /1 9ED H C1/'1 .HJ4 /1 "F BDE1H H J' BDE1HG'J /J¯1 (G 'EH1J EJ ~1/'2JE CG /13* /1 1'3*'J .H'3*G /4EF H /1 *6'/ (' GE'F 49'1G'J E71H-G '3* . 'JF *2'-E /1 BHD H 9ED '¯1 /1E'F F4H/ EJ *H'F/ (1'J 3'DG'J 7HD'FJ /1 BDE1HG'J E.*DA .H/ 1' (FE'J'F/ H 916G FE'J/ H (*/1J, /1 'DB'J (J .'5J* (H/F 49'1G' H 71- '-3'3'* /1 0GFJ* F3D G'J ,/J/ H FH~' FB4 EH+1J 1' 'JA' FE'J/. †FJF E3'DG 'J /BJB' '2 E5'/JB *G/J/'* 6EFJ H /1HFJ (1'J FG6* '3D'EJ '3* H ,DH¯J1J '2 E2EF 4/F "F EJ 7D(/ CG /1 JC (3*1 '3*1'*˜JC H "JF/G F¯1 EH6H9 '2 H,HG E.*DA EH1/ (13J H ('2(JFJ B1'1 ¯1A*G '2 ~J41HJ FB4 E.1( "F /1 E'F/¯'1J F8'E '3D'EJ EE'F9* EB*6J H ('J3*G (9ED "J/. -3'3J* E' /1 'JF .5H5 E'F/F /1 /'EFG 49'1G'3* . E'F/FJ CG ('F¯ E1¯ '3* /1 :J1 'JF5H1* 49'1 H '-3'3 H 'F¯J24 G'J 'FBD'(J 1' '2 DH'2E H 61H1J'* 'FBD'( G' H FG6* G'J ',*E'9J @ 3J'3J EJ /'FJE H (1'J "F G' (G 9FH'F 2EJFG 3'2 '1*B' 49H1 9EHEJ /1 EH6H9'* 0J 1(7 FB4 (1,3*G B'&D G3*JE . <br> 2 @ †FJF '3* CG *-HD'* ',*E'9J 'B*5'/J H 3J'3J (G GE1'G .H/ E4CD'* ,/J/J 1' EJ "H1F/ CG (1.J '2 "F G' F'4J '2 (GE 1J.*G 4/F F8E EH,H/ /1 F8'E 31F¯HF 4/G '3* H 'D(*G (3J'1J '2 "F G' GE F'4J '2 E.'DA* G' H 9F'/G'J F'1'6J'F .'1,J H /'.DJ '3* . 'F*8'1 GE †FJF '3* CG 81A †F/ 3'D E4CD'* (H,H/ "E/G -D H A5D 4H/ H F8EJ ,/J/ E(*FJ (1 'J/&HDH˜J 'FBD'( /1 ,'E9G FG'/JFG 4H/. <br> "F†G E3DE '3* †F'F†G E3&HD'F H 'FBD'(JHF 2-E* G'J 'HDJG 1' /1 -D H A5D E4CD'* 9EHEJ '2 /3* (/GF/ 2EJFG (1'J C'1C1/ F'A0 H EH+1 E.'DA* G' A1'GE EJ ¯1// H EJ *H'F/ (7H1 6EFJ H '2 /1HF ,'E9G 1' "(3*F -H'/+J CF/ CG *G/J/'* ,/J (1'J C4H1 ('4F/. /1 'JF '1*('7 "F†G EGE '3* 71'-J H ',1'J F8EJ (1'J *E4J* H E/J1J* 'EH1 E.*DA ',*E'9J @ 'B*5'/J 3J'3J ,'E9G '3* CG '2 JC 71A *(DH1 /GF/G .H'3*G G'J 'FBD'(J H '2 3HJ /J¯1 /1 (1/'1F/G C'1"E/J H '2 ,'F( /J¯1 '2 B'(DJ* (J4*1J (1'J ,'J¯2JFJ F8E (GE 1J.*G ¯04*G (1.H1/'1 (H/F ('4/ H (/JGJ '3* 'JF EGE (G E9FJ 9F'J* 'J/&HDH¯ G' H E*AC1'F 'FBD'( (G D2HE H 61H1* H 71'-J 2J1 3J3*E G'J *-HD ',*E'9J '3* . '¯1 'JF EGE 9EDJ'*J 4H1 'FBD'( EJ *H'F/ (' 1'GC'1G' H 3'2HC'1G'J .H/ (G -D H A5D E4CD'* ,'E9G (~1/'2/ H /1 9ED ,'E9G .H/ 1' (' HJ˜¯J G' H E.*5'* JC ,'E9G E*-HD 4/G /1¯J1 H E'DHA FE'J/ /1 :J1'JF5H1* (' '3*E1'1 /4EFJ G'J E.'DA'F H 71'-J G'J 8'G1J H ('7FJ "F G' (1'J 31F¯HFJ F8'E H -/'BD '3*-'DG "F '2 /1HF H (' 9/E '1'&G 1'GC'1 E97HA (G -1C* 'FBD'(J (1'J -D E4CD'* -'/+ 4/G H GE†FJF C'3*J G'J (1,'J E'F/G (*/1J, 2EJFG G'J AC1J (1'J C'AJ (F81 13J/F 3'2 H C'1G'J F8E 3J'3J A1H ~'4J/G 4/G 3'(B A1'GE H 'DB' EJ ¯1// H /1 †FJF A6'JJ 'J/&HDH¯G'J EBD/ (G *(JJF H *(DJ: H 71'-J E,// H '-J' E'EH1J* G' H 1H4 G'J ¯04*G EJ ~1/'2F/ H /1 -'DJCG 'FBD'(JHF /1 ¯J1 H /'1 -D HA5D E4CD'* (H,H/ "E/G F'4J '2 *:JJ1 H*-HD ¯1A*'1 "E/G 'F/ H (96' GE EECF '3* CG (G -DHD (~1/'2F/ "F G' ('9J(,H&J H '1'&G 1'GC'1G'J *,1(G 4/G 'J/&HDH˜JC 'F/J4G 'J CG 3'.*'1 3J'3J 31F¯HF 4/G 1' ~4*J('FJ EJ C1/G '3* E/'E (1 7(D F'C'1'&J 1H4 G' H EF4 G' H -*J 9B'J/ F8E ,/J/ H 'FBD'(J EJ CH(F/ H '2 *E3.1 H 31CHA* H (G 3.1G ¯1A*F E/'A9'F F8E ,/J/ †J1J CE FEJ ¯01'F/. /1†FJF 41'J7J '3* CG *H/G G'J E1/E CG FG'J* *D'4 .H/ 1' (1'J (1~'&J 3'.*'1 ,/J/ (G C'1 (1/G 'F/ H /1 'JF E3J1 -*J '2 (0D ,'F H E'D .H/ H A12F/'F4'F /1J: FC1/G 'F/ /1 ,3*,HJ 1'GG'&J (1'J C'G4 "D'E H E4CD'* .HJ4 H /1 E-/H/G H'B9J*J CG '/1'C H 49H1 1' ,'J¯2JF EF'3(J (1'J '1'&G 1'GC'1G' FFEH/G '3* .H/ (G ~4*J('F'F H E/'A9'F EC'1'FJ E(/D EJ 4HF/ CG (G '3*-'DG EA'GJE H E9J'1G' H 1H4 G' H 'G/'A 'FBD'( 'G*E'E C1/G 'F/ H (1'J 'JF EGE (1'J /GG G'J 7HD'FJ E7D( FH4*G 3.F ¯A*G H *D'4 C1/G 'F/ H'2 GEG EGE *1 (G *1(J* FJ1HJ 'F3'FJ EH1/ F81 .HJ4 'B/'E FEH/G 'F/H 'CFHF /1 41'J7J EF'3( /1 -'D †J/F EJHG '2 "F†G C4*G 'F/ EJ ('4F/. 'JF EBHDG /1915G G'J E.*DA 1. /'/G '3* H E' EJ *H'FJE E5'/JB A1'H'FJ 1' (1'J "F ,3*,H CFJE . <br> F¯'GJ (G H'˜G G' H 1H4 G'J ('FC/'1J (/HF 1(' "EH24 G'J /'F4¯'GJ 1HF/ 'EH1 'B*5'/J ; E3'&D A1GF¯J H ',*E'9J EJ *H'F/ (.H(J 8GH1 H (1H2 "+'1 E4CD'* H 'G*E'E (1'J -D "F G' '2 71JB 1H4 G'&J CG '2 13HE F8'E G'J AC1J E*9'16 (' F8E AC1J 'FBD'( '3D'EJ '3* 1' (G FE'J4 (¯0'1/. 'JF H'B9G '2 ,EDG *G/J/'* (3J'1 (FJ'F CF (1'J FG6* '3D'EJ E' '3* H F('J/ †4E'F F¯1'F H /DG'J E4*'B H '3*E1'1 'FBD'( (1 E-H1G' H '5HD 'HDJG .H/ (G 1'-*J '2 CF'1 'JF ~/J/G E3*-/+G (¯01F/. A1'EH4 FCFJE CG 'JF H'B9G /1 2E'F E' 51A' 1J4G /1 0GFJ* E.'DA'F *AC1 '3D'EJ H/4EF'F '-J' "F F/'1/ (DCG ('*H,G (G 41'J7J CG (1 E' 1A*G '3* 'F/J4G -D E4CD'* C4H1 '2 71JB CF'1 ¯0'4*F ¯'E (G ¯'E 1'GC'1G'J B'FHF '3'3J ,'J¯2JF 1H4 G'J DJ(1'DJ3*J /1 0GJF* (3J'1J '2 EH+1'F /1 F8'E '3D'EJ GE ,' .H4 C1/G '3* . 'JF G4/'1 1' ,/J (¯J1JE</font></font></font></font></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"> &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"><span lang="fa"> <font size="2" color="#FF0000">EF(9: 1H2F'EG ,EGH1Ì '3D'EÌ EH1. 2/2/86</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="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"> </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="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="1299"> <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="149"> &nbsp;</td> </tr> <tr> <td height="22"> <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="22"> <p dir="rtl" 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>