<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns="http://backend.userland.com/rss2" xmlns:yandex="http://news.yandex.ru">
<channel>
<title>سرزمین دانلود</title>
<link>http://7downloads.ir/</link>
<language>Fa</language>
<description>سرزمین دانلود</description>
<image>
<url>http://7downloads.ir/yandexlogo.gif</url>
<title>سرزمین دانلود</title>
<link>http://7downloads.ir/</link>
</image>
<generator>DataLife Engine</generator><item>
<title>ليريك T.A.T.U - Don't Forget</title>
<link>http://7downloads.ir/lyric/112-lerek-tatu-dont-forget.html</link>
<description>  جديد ترين آهنگي كه TATU خونده رو ليريكشو آماده كردم و واستون گذاشتم ( داريم به يادگيري زبان انگليسي كمك ميكنيم )</description>
<category>ليريك, تتو</category>
<author>حسام</author>
<pubDate>Mon, 15 Feb 2010 16:27:37 +0300</pubDate>
<yandex:full-text>جديد ترين آهنگي كه TATU خونده رو ليريكشو آماده كردم و واستون گذاشتم ( داريم به يادگيري زبان انگليسي كمك ميكنيم )Don't Forget LyricsYou don't regretYour past embracesTime will forgetPhrases and facesNo more saying wordsNo more crying tearsAll that was beforeIs no longer hereNo more singing songsSilent lips are dryAll that was beforeSlowly passing byNo more saying wordsNo more crying tearsAll that was beforeIs no longer hereNo more singing songsJust for you and ISilent nights are longBroken hearts are dryNo turning backNo cancellationCat's in the bagTrain's at the stationNo more saying wordsNo more crying tearsAll that was beforeIs no longer herehttp://www.elyricsworld.com/don't_forget_lyrics_tatu.htmlNo more singing songsSilent lips are dryAll that was beforeSlowly passing byNo more saying wordsNo more crying tearsAll that was beforeIs no longer hereNo more singing songsJust for you and ISilent nights are longBroken hearts are dry</yandex:full-text>
</item><item>
<title>آموزش جاوا اسكريپت - قسمت ششم</title>
<link>http://7downloads.ir/java/111-amvzsh-java-askrept-ghsmt-shshm.html</link>
<description>   معرفی دستور شرطی if...else و کاربردهای مختلف آن  از دستورات شرطی برای انجام دستوراتی به شرط برقراری یک رابطه دیگر استفاده می شود. در طراحی صفحات وب بسیار پیش می آید که می خواهیم در شرایط خاصی صفحه یک رفتار مشخص داشته باشد و در موارد دیگر رفتار صفحه تفاوت داشته باشد. در این مواقع می توانیم از دستور شرطی if استفاده کنیم. با این دستور مشخص می کنیم اگر شرط خاصی برقرار بود یک عمل خاص انجام شود.</description>
<category>جاوا اسكريپت, پابلیک, آموزش, E-book</category>
<author>حسام</author>
<pubDate>Mon, 15 Feb 2010 15:54:36 +0300</pubDate>
<yandex:full-text>معرفی دستور شرطی if...else و کاربردهای مختلف آناز دستورات شرطی برای انجام دستوراتی به شرط برقراری یک رابطه دیگر استفاده می شود. در طراحی صفحات وب بسیار پیش می آید که می خواهیم در شرایط خاصی صفحه یک رفتار مشخص داشته باشد و در موارد دیگر رفتار صفحه تفاوت داشته باشد. در این مواقع می توانیم از دستور شرطی if استفاده کنیم. با این دستور مشخص می کنیم اگر شرط خاصی برقرار بود یک عمل خاص انجام شود. ساختار این دستور به شکل زیر است :دستور شرطی ifif &amp;#40;condition&amp;#41;{دستوری که در صورت درستی شرط اجرا می شود در اینجا قرار می گیرد}به یک مثال برای دستور if توجه کنید :var test = confirm&amp;#40;&amp;#39;اگر این پیام را تأیید کنید دستور شرطی اجرا می شود&amp;#39;&amp;#41;;if &amp;#40;test == true&amp;#41; {alert&amp;#40;&amp;#39;شما دکمه مورد نظر را کلیک کردید و این پیام به نمایش در آمد&amp;#39;&amp;#41;;}دستور شرطی if...elseبرخی مواقع ممکن است بخواهیم دستور شرطی یک شرط را چک کند تا در صورت برقرار بودن آن شرط یک فرمان خاص را اجرا کند و در صورتی که شرط برقار نبود یک فرمان دیگر را به اجرا در آورد. در این موارد می توانیم از دستور if به همراه else استفاده کنیم. ساختار این دستور به شکل زیر است :if &amp;#40;condition&amp;#41; {دستوراتی که در صورت برقراری شرط اجرا می شوند.}else {دستوراتی که در صورت عدم برقراری شرط اجرا می شوند.}در کد بالا ابتدا شرط بررسی می شود و در صورت برقراری آن دستورات مربوطه اجرا می شوند ولی در صورتی که شرط برقرار نباشد دستورات مربوط به قسمت else اجرا می شود.var yourmark = prompt&amp;#40;&amp;#39;یک شماره از 0 تا 20 وارد کنید &amp;#58;&amp;#39;,&amp;#39;&amp;#39;&amp;#41;;if &amp;#40;yourmark &amp;#62; 10&amp;#41; {alert&amp;#40;&amp;#39;شماره ای که وارد کرده ای از 10 بزرگتر است&amp;#39;&amp;#41;;}else {alert&amp;#40;&amp;#39;عبارتی که شما وارد کرده اید از 10 بزرگتر نیست!&amp;#39;&amp;#41;;}استفاده از دستور if..else if...else (دستورات شرطی تو در تو)ممکن است در نظر داشته باشیم تا در صورت برقراری یک شرط یک دستور خاص اجرا شود و در صورتی که شرط برقرار نبود شرط دیگری بررسی شود و دستور مربوط به آن اجرا شود و در صورتی که هیچ یک از شرطهای قبل برقرار نبود دستور دیگری اجرا شود. در این مواقع می توانیم از دستور else if در دستور if...else قبلی استفاده کنید. به صورت زیر :if &amp;#40;condition 1&amp;#41; {دستوراتی که در صورت درستی شرط اول اجرا می شوند}else if &amp;#40;condition 2&amp;#41; {دستوراتی که در صورت درستی شرط دوم اجرا می شوند}else {دستوراتی که زمانی که هیچکدام از شرطها صحیح نباشد اجرا می شوند}در این روش محدودیتی از نظر تعداد شرطها وجود ندارد و می توانیم به تعداد نامحدود از دستور else if استفاده کنیم ولی در مواردی که تعداد این شرطها خیلی زیاد می شود بهتر است به جای این روش از دستور switch که بعداً توضیح داده خواهد شد استفاده کنیم.در اینجا مثال قبل را با کمی تغییر برای این روش استفاده می کنیم :var yourmark = prompt&amp;#40;&amp;#39;یک شماره به دلخواه وارد کنید &amp;#58;&amp;#39;,&amp;#39;&amp;#39;&amp;#41;;if &amp;#40;yourmark &amp;#62; 0 &amp;amp;&amp;amp; yourmark &amp;#60; 100 &amp;#41; {alert&amp;#40;&amp;#39;شماره وارد شده بین 0 تا 100 است&amp;#39;&amp;#41;;}else if &amp;#40;yourmark &amp;#62; 100&amp;#41; {alert&amp;#40;&amp;#39;شماره وارد شده از 100 بزرگتر است&amp;#39;&amp;#41;;}else {alert&amp;#40;&amp;#39;عبارت وارد شده یا 0 است یا به جای عدد از حروف استفاده کرده اید&amp;#39;&amp;#41;;} </yandex:full-text>
</item><item>
<title>بازي جاوا ايكس - او</title>
<link>http://7downloads.ir/java/110-baze-java-aeks-av.html</link>
<description>  يه بازي جاوا آماده كردم !!  ايندفه بازي ايكس او خودمون !! يا همون Tic tac toe  كد در ادامه مطلب  دمو</description>
<category>جاوا اسكريپت, كد بازي</category>
<author>حسام</author>
<pubDate>Sat, 13 Feb 2010 22:02:34 +0300</pubDate>
<yandex:full-text>يه بازي جاوا آماده كردم !! ايندفه بازي ايكس او خودمون !! يا همون Tic tac toe&amp;#60;HTML&amp;#62;&amp;#60;HEAD&amp;#62;&amp;#60;basefont size=3&amp;#62;&amp;#60;TITLE&amp;#62;j&amp;#097;vascript Source Code 3000&amp;#58;&amp;nbsp;&amp;nbsp;Games&amp;#58;&amp;nbsp;&amp;nbsp;Tic-Tac-Toe&amp;#60;/TITLE&amp;#62;&amp;#60;META HTTP-EQUIV=&amp;#34;j&amp;#097;vascript Source Code 3000&amp;#34; CONTENT = &amp;#34;no-cache&amp;#34;&amp;#62;&amp;#60;META NAME=&amp;#34;date&amp;#34; CONTENT=&amp;#34;2000-09-09&amp;#34;&amp;#62;&amp;#60;META NAME=&amp;#34;channel&amp;#34; CONTENT=&amp;#34;Web Developer&amp;#34;&amp;#62;&amp;#60;META NAME=&amp;#34;author&amp;#34; CONTENT=&amp;#34;Maximilian Stocker &amp;#40;maxstocker@reallyusefulcomputing.com&amp;#41;&amp;#34;&amp;#62;&amp;#60;META NAME=&amp;#34;section&amp;#34; CONTENT=&amp;#34;Games&amp;#34;&amp;#62;&amp;#60;META NAME=&amp;#34;description&amp;#34; CONTENT=&amp;#34;Try your luck at an interactive game of good old tic-tac-toe!!&amp;nbsp;&amp;nbsp;Automatic scoring and alternating &amp;#34;first moves&amp;#34; are built in.&amp;nbsp;&amp;nbsp;Fun!&amp;#34;&amp;#62;&amp;#60;SCRIPT LANGUAGE=&amp;#34;j&amp;#097;vascript&amp;#34;&amp;#62;&amp;#60;!-- Beginvar x = &amp;#34;http&amp;#58;//www.7downloads.ir/dl/uploads/x.jpg&amp;#34;;// Location of where you uploaded your site&amp;#39;s x.jpg imagevar o = &amp;#34;http&amp;#58;//www.7downloads.ir/dl/uploads/o.jpg&amp;#34;;// Location of where you uploaded your site&amp;#39;s o.jpg imagevar blank = &amp;#34;http&amp;#58;//www.7downloads.ir/dl/uploads/blank.jpg&amp;#34;;// Location of where you uploaded your site&amp;#39;s blank.jpg imagevar pause = 0;var all = 0;var a = 0;var b = 0;var c = 0;var d = 0;var e = 0;var f = 0;var g = 0;var h = 0;var i = 0;var temp=&amp;#34;&amp;#34;;var ok = 0;var cf = 0;var choice=9;var aRandomNumber = 0;var comp = 0; var t = 0;var wn = 0;var ls = 0;var ts = 0;function help&amp;#40;&amp;#41; {alert&amp;#40;&amp;#34;Welcome to Tic-Tac-Toe!&amp;nbsp;&amp;nbsp;You play as the X&amp;#39;s and the computer is the O&amp;#39;s.&amp;nbsp;&amp;nbsp;Select the square you want to put your X into by clicking them.&amp;nbsp;&amp;nbsp;You cannot occupy a square that is already occupied. The first player to get three squares in a row wins.&amp;nbsp;&amp;nbsp;Good Luck!!&amp;#34;&amp;#41;}function logicOne&amp;#40;&amp;#41; {if &amp;#40;&amp;#40;a==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;b==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;c==1&amp;#41;&amp;#41; all=1;if &amp;#40;&amp;#40;a==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;d==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;g==1&amp;#41;&amp;#41; all=1;if &amp;#40;&amp;#40;a==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==1&amp;#41;&amp;#41; all=1;if &amp;#40;&amp;#40;b==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;h==1&amp;#41;&amp;#41; all=1;if &amp;#40;&amp;#40;d==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;f==1&amp;#41;&amp;#41; all=1;if &amp;#40;&amp;#40;g==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;h==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==1&amp;#41;&amp;#41; all=1;if &amp;#40;&amp;#40;c==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;f==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==1&amp;#41;&amp;#41; all=1;if &amp;#40;&amp;#40;g==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;c==1&amp;#41;&amp;#41; all=1;if &amp;#40;&amp;#40;a==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;b==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;c==2&amp;#41;&amp;#41; all=2;if &amp;#40;&amp;#40;a==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;d==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;g==2&amp;#41;&amp;#41; all=2;if &amp;#40;&amp;#40;a==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==2&amp;#41;&amp;#41; all=2;if &amp;#40;&amp;#40;b==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;h==2&amp;#41;&amp;#41; all=2;if &amp;#40;&amp;#40;d==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;f==2&amp;#41;&amp;#41; all=2;if &amp;#40;&amp;#40;g==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;h==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==2&amp;#41;&amp;#41; all=2;if &amp;#40;&amp;#40;c==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;f==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==2&amp;#41;&amp;#41; all=2;if &amp;#40;&amp;#40;g==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;c==2&amp;#41;&amp;#41; all=2;if &amp;#40;&amp;#40;a != 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;b != 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;c != 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;d != 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;e != 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;f != 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;g != 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;h != 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;i != 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;all == 0&amp;#41;&amp;#41; all = 3;} function logicTwo&amp;#40;&amp;#41; {if &amp;#40;&amp;#40;a==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;b==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;c== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;C&amp;#34;;if &amp;#40;&amp;#40;a==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;b== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;c==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;B&amp;#34;;if &amp;#40;&amp;#40;a== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;b==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;c==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;A&amp;#34;;if &amp;#40;&amp;#40;a==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;d==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;g== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;G&amp;#34;;if &amp;#40;&amp;#40;a==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;d== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;g==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;D&amp;#34;;if &amp;#40;&amp;#40;a== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;d==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;g==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;A&amp;#34;;if &amp;#40;&amp;#40;a==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;i== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;I&amp;#34;;if &amp;#40;&amp;#40;a==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;e== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;E&amp;#34;;if &amp;#40;&amp;#40;a== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;A&amp;#34;;if &amp;#40;&amp;#40;b==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;h== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;H&amp;#34;;if &amp;#40;&amp;#40;b==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;e== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;h==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;E&amp;#34;;if &amp;#40;&amp;#40;b== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;h==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;B&amp;#34;;if &amp;#40;&amp;#40;d==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;f== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;F&amp;#34;;if &amp;#40;&amp;#40;d==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;e== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;f==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;E&amp;#34;;if &amp;#40;&amp;#40;d== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;f==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;D&amp;#34;;if &amp;#40;&amp;#40;g==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;h==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;i== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;I&amp;#34;;if &amp;#40;&amp;#40;g==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;h== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;H&amp;#34;;if &amp;#40;&amp;#40;g== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;h==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;G&amp;#34;;if &amp;#40;&amp;#40;c==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;f==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;i== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;I&amp;#34;;if &amp;#40;&amp;#40;c==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;f== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;F&amp;#34;;if &amp;#40;&amp;#40;c== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;f==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;C&amp;#34;;if &amp;#40;&amp;#40;g==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;c== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;C&amp;#34;;if &amp;#40;&amp;#40;g==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;e== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;c==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;E&amp;#34;;if &amp;#40;&amp;#40;g== 0&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;c==2&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;G&amp;#34;;}function logicThree&amp;#40;&amp;#41; {if &amp;#40;&amp;#40;a==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;b==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;c==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;C&amp;#34;;if &amp;#40;&amp;#40;a==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;b==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;c==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;B&amp;#34;;if &amp;#40;&amp;#40;a==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;b==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;c==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;A&amp;#34;;if &amp;#40;&amp;#40;a==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;d==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;g==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;G&amp;#34;;if &amp;#40;&amp;#40;a==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;d==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;g==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;D&amp;#34;;if &amp;#40;&amp;#40;a==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;d==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;g==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;A&amp;#34;;if &amp;#40;&amp;#40;a==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;I&amp;#34;;if &amp;#40;&amp;#40;a==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;E&amp;#34;;if &amp;#40;&amp;#40;a==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;A&amp;#34;;if &amp;#40;&amp;#40;b==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;h==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;H&amp;#34;;if &amp;#40;&amp;#40;b==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;h==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;E&amp;#34;;if &amp;#40;&amp;#40;b==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;h==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;B&amp;#34;;if &amp;#40;&amp;#40;d==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;f==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;F&amp;#34;;if &amp;#40;&amp;#40;d==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;f==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;E&amp;#34;;if &amp;#40;&amp;#40;d==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;f==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;D&amp;#34;;if &amp;#40;&amp;#40;g==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;h==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;I&amp;#34;;if &amp;#40;&amp;#40;g==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;h==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;H&amp;#34;;if &amp;#40;&amp;#40;g==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;h==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;G&amp;#34;;if &amp;#40;&amp;#40;c==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;f==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;I&amp;#34;;if &amp;#40;&amp;#40;c==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;f==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;F&amp;#34;;if &amp;#40;&amp;#40;c==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;f==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;C&amp;#34;;if &amp;#40;&amp;#40;g==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;c==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;C&amp;#34;;if &amp;#40;&amp;#40;g==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;c==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;E&amp;#34;;if &amp;#40;&amp;#40;g==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;c==1&amp;#41;&amp;amp;&amp;amp;&amp;#40;temp==&amp;#34;&amp;#34;&amp;#41;&amp;#41; temp=&amp;#34;G&amp;#34;;}function clearOut&amp;#40;&amp;#41; {document.game.you.value=&amp;#34;0&amp;#34;;document.game.computer.value=&amp;#34;0&amp;#34;;document.game.ties.value=&amp;#34;0&amp;#34;;}function checkSpace&amp;#40;&amp;#41; {if &amp;#40;&amp;#40;temp==&amp;#34;A&amp;#34;&amp;#41;&amp;amp;&amp;amp;&amp;#40;a==0&amp;#41;&amp;#41; {ok=1;if &amp;#40;cf==0&amp;#41; a=1;if &amp;#40;cf==1&amp;#41; a=2;}if &amp;#40;&amp;#40;temp==&amp;#34;B&amp;#34;&amp;#41;&amp;amp;&amp;amp;&amp;#40;b==0&amp;#41;&amp;#41; {ok=1;if &amp;#40;cf==0&amp;#41; b=1;if &amp;#40;cf==1&amp;#41; b=2;}if &amp;#40;&amp;#40;temp==&amp;#34;C&amp;#34;&amp;#41;&amp;amp;&amp;amp;&amp;#40;c==0&amp;#41;&amp;#41; {ok=1;if &amp;#40;cf==0&amp;#41; c=1;if &amp;#40;cf==1&amp;#41; c=2;}if &amp;#40;&amp;#40;temp==&amp;#34;D&amp;#34;&amp;#41;&amp;amp;&amp;amp;&amp;#40;d==0&amp;#41;&amp;#41; {ok=1;if &amp;#40;cf==0&amp;#41; d=1;if &amp;#40;cf==1&amp;#41; d=2;}if &amp;#40;&amp;#40;temp==&amp;#34;E&amp;#34;&amp;#41;&amp;amp;&amp;amp;&amp;#40;e==0&amp;#41;&amp;#41; {ok=1;if &amp;#40;cf==0&amp;#41; e=1;if &amp;#40;cf==1&amp;#41; e=2;}if &amp;#40;&amp;#40;temp==&amp;#34;F&amp;#34;&amp;#41;&amp;amp;&amp;amp;&amp;#40;f==0&amp;#41;&amp;#41; {ok=1if &amp;#40;cf==0&amp;#41; f=1;if &amp;#40;cf==1&amp;#41; f=2;}if &amp;#40;&amp;#40;temp==&amp;#34;G&amp;#34;&amp;#41;&amp;amp;&amp;amp;&amp;#40;g==0&amp;#41;&amp;#41; {ok=1if &amp;#40;cf==0&amp;#41; g=1;if &amp;#40;cf==1&amp;#41; g=2;}if &amp;#40;&amp;#40;temp==&amp;#34;H&amp;#34;&amp;#41;&amp;amp;&amp;amp;&amp;#40;h==0&amp;#41;&amp;#41; {ok=1;if &amp;#40;cf==0&amp;#41; h=1;if &amp;#40;cf==1&amp;#41; h=2;}if &amp;#40;&amp;#40;temp==&amp;#34;I&amp;#34;&amp;#41;&amp;amp;&amp;amp;&amp;#40;i==0&amp;#41;&amp;#41; {ok=1;if &amp;#40;cf==0&amp;#41; i=1; if &amp;#40;cf==1&amp;#41; i=2; }}function yourChoice&amp;#40;chName&amp;#41; {pause = 0;if &amp;#40;all!=0&amp;#41; ended&amp;#40;&amp;#41;;if &amp;#40;all==0&amp;#41; {cf = 0;ok = 0;temp=chName;checkSpace&amp;#40;&amp;#41;;if &amp;#40;ok==1&amp;#41; {document.images&amp;#91;chName&amp;#93;.src = x;}if &amp;#40;ok==0&amp;#41;taken&amp;#40;&amp;#41;;process&amp;#40;&amp;#41;;if &amp;#40;&amp;#40;all==0&amp;#41;&amp;amp;&amp;amp;&amp;#40;pause==0&amp;#41;&amp;#41; myChoice&amp;#40;&amp;#41;;&amp;nbsp;&amp;nbsp; }}function taken&amp;#40;&amp;#41; {alert&amp;#40;&amp;#34;That square is already occupied.&amp;nbsp;&amp;nbsp;Please select another square.&amp;#34;&amp;#41;pause=1;}function myChoice&amp;#40;&amp;#41; {temp=&amp;#34;&amp;#34;;ok = 0;cf=1;logicTwo&amp;#40;&amp;#41;;logicThree&amp;#40;&amp;#41;;checkSpace&amp;#40;&amp;#41;;while&amp;#40;ok==0&amp;#41; {aRandomNumber=Math.random&amp;#40;&amp;#41;comp=Math.round&amp;#40;&amp;#40;choice-1&amp;#41;*aRandomNumber&amp;#41;+1;if &amp;#40;comp==1&amp;#41; temp=&amp;#34;A&amp;#34;;if &amp;#40;comp==2&amp;#41; temp=&amp;#34;B&amp;#34;;if &amp;#40;comp==3&amp;#41; temp=&amp;#34;C&amp;#34;;if &amp;#40;comp==4&amp;#41; temp=&amp;#34;D&amp;#34;;if &amp;#40;comp==5&amp;#41; temp=&amp;#34;E&amp;#34;;if &amp;#40;comp==6&amp;#41; temp=&amp;#34;F&amp;#34;;if &amp;#40;comp==7&amp;#41; temp=&amp;#34;G&amp;#34;;if &amp;#40;comp==8&amp;#41; temp=&amp;#34;H&amp;#34;;if &amp;#40;comp==9&amp;#41; temp=&amp;#34;I&amp;#34;;checkSpace&amp;#40;&amp;#41;;}document.images&amp;#91;temp&amp;#93;.src= o;process&amp;#40;&amp;#41;;}function ended&amp;#40;&amp;#41; {alert&amp;#40;&amp;#34;The game has already ended. To play a new game click the Play Again button.&amp;#34;&amp;#41;}function process&amp;#40;&amp;#41; {logicOne&amp;#40;&amp;#41;;if &amp;#40;all==1&amp;#41;{ alert&amp;#40;&amp;#34;You won, congratulations!&amp;#34;&amp;#41;; wn++; }if &amp;#40;all==2&amp;#41;{ alert&amp;#40;&amp;#34;Gotcha!&amp;nbsp;&amp;nbsp;I win!&amp;#34;&amp;#41;; ls++; }if &amp;#40;all==3&amp;#41;{ alert&amp;#40;&amp;#34;We tied.&amp;#34;&amp;#41;; ts++; }if &amp;#40;all!=0&amp;#41; {document.game.you.value = wn;document.game.computer.value = ls;document.game.ties.value = ts;&amp;nbsp;&amp;nbsp; }}function playAgain&amp;#40;&amp;#41; {if &amp;#40;all==0&amp;#41; {if&amp;#40;confirm&amp;#40;&amp;#34;This will restart the game and clear all the current scores. OK?&amp;#34;&amp;#41;&amp;#41; reset&amp;#40;&amp;#41;;}if &amp;#40;all&amp;#62;0&amp;#41; reset&amp;#40;&amp;#41;;}function reset&amp;#40;&amp;#41; {all = 0;a = 0;b = 0;c = 0;d = 0;e = 0;f = 0;g = 0;h = 0;i = 0;temp=&amp;#34;&amp;#34;;ok = 0;cf = 0;choice=9;aRandomNumber = 0;comp = 0; document.images.A.src= blank;document.images.B.src= blank;document.images.C.src= blank;document.images.D.src= blank;document.images.E.src= blank;document.images.F.src= blank;document.images.G.src= blank;document.images.H.src= blank;document.images.I.src= blank;if &amp;#40;t==0&amp;#41; { t=2; myChoice&amp;#40;&amp;#41;; }t--;}//&amp;nbsp;&amp;nbsp;End --&amp;#62;&amp;#60;/script&amp;#62;&amp;#60;/HEAD&amp;#62;&amp;#60;BODY BGCOLOR=#ffffff vlink=#0000ff&amp;#62;&amp;#60;p align=&amp;#34;center&amp;#34;&amp;#62;&amp;#60;font face=&amp;#34;Tahoma&amp;#34; size=&amp;#34;5&amp;#34;&amp;#62;&amp;#60;a href=&amp;#34;http&amp;#58;//www.7downloads.ir&amp;#34;&amp;#62;www.7downloads.ir&amp;#60;/a&amp;#62;&amp;#60;/font&amp;#62;&amp;#60;/p&amp;#62;&amp;#60;p align=&amp;#34;center&amp;#34;&amp;#62;&amp;#60;font face=&amp;#34;Tahoma&amp;#34; size=&amp;#34;5&amp;#34;&amp;#62;XO Game&amp;#60;/font&amp;#62;&amp;#60;/p&amp;#62;&amp;#60;center&amp;#62;&amp;#60;!-- Demonstration --&amp;#62;&amp;#60;center&amp;#62;&amp;#60;form name=game&amp;#62;&amp;#60;table border=0&amp;#62;&amp;#60;td&amp;#62;&amp;#60;table border=1&amp;#62;&amp;#60;tr&amp;#62;&amp;#60;td&amp;#62;&amp;#60;a href=&amp;#34;j&amp;#097;vascript&amp;#58;yourChoice&amp;#40;&amp;#39;A&amp;#39;&amp;#41;&amp;#34;&amp;#62;&amp;#60;img src=&amp;#34;http&amp;#58;//www.7downloads.ir/dl/uploads/blank.jpg&amp;#34;&amp;#34; border=0 height=100 width=100 name=A alt=&amp;#34;Top-Left&amp;#34;&amp;#62;&amp;#60;/a&amp;#62;&amp;#60;/td&amp;#62;&amp;#60;td&amp;#62;&amp;#60;a href=&amp;#34;j&amp;#097;vascript&amp;#58;yourChoice&amp;#40;&amp;#39;B&amp;#39;&amp;#41;&amp;#34;&amp;#62;&amp;#60;img src=&amp;#34;http&amp;#58;//www.7downloads.ir/dl/uploads/blank.jpg&amp;#34;&amp;#34; border=0 height=100 width=100 name=B alt=&amp;#34;Top-Center&amp;#34;&amp;#62;&amp;#60;/a&amp;#62;&amp;#60;/td&amp;#62;&amp;#60;td&amp;#62;&amp;#60;a href=&amp;#34;j&amp;#097;vascript&amp;#58;yourChoice&amp;#40;&amp;#39;C&amp;#39;&amp;#41;&amp;#34;&amp;#62;&amp;#60;img src=&amp;#34;http&amp;#58;//www.7downloads.ir/dl/uploads/blank.jpg&amp;#34;&amp;#34; border=0 height=100 width=100 name=C alt=&amp;#34;Top-Right&amp;#34;&amp;#62;&amp;#60;/a&amp;#62;&amp;#60;/td&amp;#62;&amp;#60;/tr&amp;#62;&amp;#60;tr&amp;#62;&amp;#60;td&amp;#62;&amp;#60;a href=&amp;#34;j&amp;#097;vascript&amp;#58;yourChoice&amp;#40;&amp;#39;D&amp;#39;&amp;#41;&amp;#34;&amp;#62;&amp;#60;img src=&amp;#34;http&amp;#58;//www.7downloads.ir/dl/uploads/blank.jpg&amp;#34;&amp;#34; border=0 height=100 width=100 name=D alt=&amp;#34;Middle-Left&amp;#34;&amp;#62;&amp;#60;/a&amp;#62;&amp;#60;/td&amp;#62;&amp;#60;td&amp;#62;&amp;#60;a href=&amp;#34;j&amp;#097;vascript&amp;#58;yourChoice&amp;#40;&amp;#39;E&amp;#39;&amp;#41;&amp;#34;&amp;#62;&amp;#60;img src=&amp;#34;http&amp;#58;//www.7downloads.ir/dl/uploads/blank.jpg&amp;#34;&amp;#34; border=0 height=100 width=100 name=E alt=&amp;#34;Middle-Center&amp;#34;&amp;#62;&amp;#60;/a&amp;#62;&amp;#60;/td&amp;#62;&amp;#60;td&amp;#62;&amp;#60;a href=&amp;#34;j&amp;#097;vascript&amp;#58;yourChoice&amp;#40;&amp;#39;F&amp;#39;&amp;#41;&amp;#34;&amp;#62;&amp;#60;img src=&amp;#34;http&amp;#58;//www.7downloads.ir/dl/uploads/blank.jpg&amp;#34;&amp;#34; border=0 height=100 width=100 name=F alt=&amp;#34;Middle-Right&amp;#34;&amp;#62;&amp;#60;/a&amp;#62;&amp;#60;/td&amp;#62;&amp;#60;/tr&amp;#62;&amp;#60;tr&amp;#62;&amp;#60;td&amp;#62;&amp;#60;a href=&amp;#34;j&amp;#097;vascript&amp;#58;yourChoice&amp;#40;&amp;#39;G&amp;#39;&amp;#41;&amp;#34;&amp;#62;&amp;#60;img src=&amp;#34;http&amp;#58;//www.7downloads.ir/dl/uploads/blank.jpg&amp;#34;&amp;#34; border=0 height=100 width=100 name=G alt=&amp;#34;Bottom-Left&amp;#34;&amp;#62;&amp;#60;/a&amp;#62;&amp;#60;/td&amp;#62;&amp;#60;td&amp;#62;&amp;#60;a href=&amp;#34;j&amp;#097;vascript&amp;#58;yourChoice&amp;#40;&amp;#39;H&amp;#39;&amp;#41;&amp;#34;&amp;#62;&amp;#60;img src=&amp;#34;http&amp;#58;//www.7downloads.ir/dl/uploads/blank.jpg&amp;#34;&amp;#34; border=0 height=100 width=100 name=H alt=&amp;#34;Bottom-Center&amp;#34;&amp;#62;&amp;#60;/a&amp;#62;&amp;#60;/td&amp;#62;&amp;#60;td&amp;#62;&amp;#60;a href=&amp;#34;j&amp;#097;vascript&amp;#58;yourChoice&amp;#40;&amp;#39;I&amp;#39;&amp;#41;&amp;#34;&amp;#62;&amp;#60;img src=&amp;#34;http&amp;#58;//www.7downloads.ir/dl/uploads/blank.jpg&amp;#34;&amp;#34; border=0 height=100 width=100&amp;nbsp;&amp;nbsp;name=I alt=&amp;#34;Bottom-Right&amp;#34;&amp;#62;&amp;#60;/a&amp;#62;&amp;#60;/td&amp;#62;&amp;#60;/tr&amp;#62;&amp;#60;/table&amp;#62;&amp;#60;/td&amp;#62;&amp;#60;td&amp;#62;&amp;#60;table&amp;#62;&amp;#60;tr&amp;#62;&amp;#60;td&amp;#62;&amp;#60;input type=text size=5 name=you&amp;#62;&amp;#60;/td&amp;#62;&amp;#60;td&amp;#62;&amp;#60;span lang=&amp;#34;fa&amp;#34;&amp;#62;&amp;amp;#1603;&amp;amp;#1575;&amp;amp;#1585;&amp;amp;#1576;&amp;amp;#1585;&amp;#60;/span&amp;#62;&amp;#60;/td&amp;#62;&amp;#60;/tr&amp;#62;&amp;#60;tr&amp;#62;&amp;#60;td&amp;#62;&amp;#60;input type=text size=5 name=computer&amp;#62;&amp;#60;/td&amp;#62;&amp;#60;td&amp;#62;Computer&amp;#60;/td&amp;#62;&amp;#60;/tr&amp;#62;&amp;#60;tr&amp;#62;&amp;#60;td&amp;#62;&amp;#60;input type=text size=5 name=ties&amp;#62;&amp;#60;/td&amp;#62;&amp;#60;td&amp;#62;&amp;#60;span lang=&amp;#34;fa&amp;#34;&amp;#62;&amp;amp;#1605;&amp;amp;#1587;&amp;amp;#1575;&amp;amp;#1608;&amp;amp;#1610;&amp;#60;/span&amp;#62;&amp;#60;/td&amp;#62;&amp;#60;/tr&amp;#62;&amp;#60;/table&amp;#62;&amp;#60;/td&amp;#62;&amp;#60;/table&amp;#62;&amp;#60;input type=button value=&amp;#34;&amp;amp;#1576;&amp;amp;#1575;&amp;amp;#1586;&amp;amp;#1610; &amp;amp;#1583;&amp;amp;#1608;&amp;amp;#1576;&amp;amp;#1575;&amp;amp;#1585;&amp;amp;#1607;&amp;#34; &amp;#111;nclick=&amp;#34;playAgain&amp;#40;&amp;#41;;&amp;#34;&amp;#62;&amp;amp;nbsp;&amp;amp;nbsp;&amp;#60;input type=button value=&amp;#34;&amp;amp;#1603;&amp;amp;#1605;&amp;amp;#1603;&amp;#34; &amp;#111;nclick=&amp;#34;help&amp;#40;&amp;#41;;&amp;#34;&amp;#62;&amp;#60;/form&amp;#62;&amp;#60;/center&amp;#62;&amp;#60;/CENTER&amp;#62;&amp;#60;/body&amp;#62;&amp;#60;/html&amp;#62;</yandex:full-text>
</item><item>
<title>ليريك Madonna - Across The Sky</title>
<link>http://7downloads.ir/lyric/109-lerek-madonna-across-the-sky.html</link>
<description>  بازم ليريك !! قصد دارم يه دامين بگيرم برم تو كار ليريك !!    ليريك Madonna - Across The Sky   جالبه من دوسش دارم</description>
<category>ليريك, Others</category>
<author>حسام</author>
<pubDate>Sat, 13 Feb 2010 20:44:54 +0300</pubDate>
<yandex:full-text>بازم ليريك !! قصد دارم يه دامين بگيرم برم تو كار ليريك !!  ليريك Madonna - Across The Sky جالبه من دوسش دارم Across The Sky LyricsI’m no stranger to deception.I’ve lied and been lied to.I’m no paragon of virtue,but I wanna be with you.I’ve never been a righteous soul,and I don’t pretend I am.But I walk the line when I’m with you,because you make me believe I can.But were running out of options,and were running out of time.And I don’t know if it’s you or me,but it’s time to speak your mind.Because I’m traveling across the sky,when your with me, your hand in mine.Our honesty will make us fly.Were traveling across the sky.I’m not good at keeping quiet,and I can’t keep his tie (?) down.But it’s got to count for something,that were still hanging around.(Cause I need you baby)If you need an explanation for,what is lost and what is true.(Gotta talk to me)Never ever stop the world (?)That I could not be with you.But were running out of options,http://www.elyricsworld.com/across_the_sky_lyrics_madonna.htmland were running out of time.And i don’t know if it’s you or me,but you’ve got to speak your mind.Cause’ I’m traveling across the sky,when your with me, your hand in mine.Our honesty will make us fly,were traveling across the sky.</yandex:full-text>
</item><item>
<title>منو حدس بزن !</title>
<link>http://7downloads.ir/game/108-mnv-hds-bzn-.html</link>
<description>  اينم اولين بازي سايتم ! خودم نوشتمش     ميذارم واسه دانلود بازم ميذارم دفه بعدي با سورسش :)</description>
<category>بازی, فکری</category>
<author>حسام</author>
<pubDate>Fri, 12 Feb 2010 23:02:27 +0300</pubDate>
<yandex:full-text>اينم اولين بازي سايتم ! خودم نوشتمش   ميذارم واسه دانلود بازم ميذارم دفه بعدي با سورسش :)دانلود</yandex:full-text>
</item><item>
<title>ليريك Taylor swift - white horse</title>
<link>http://7downloads.ir/lyric/107-lerek-taylor-swift-white-horse.html</link>
<description>   با خستگي تمام اينو دادم ،‌وقتي ناراحتم اين آهنگ منو به وجد مياره اينم ليريك White horse</description>
<category>ليريك, تيلور سويفت</category>
<author>حسام</author>
<pubDate>Thu, 11 Feb 2010 14:35:43 +0300</pubDate>
<yandex:full-text>با خستگي تمام اينو دادم ،‌وقتي ناراحتم اين آهنگ منو به وجد مياره اينم ليريك White horse Say you're sorryThat face of an angel comes outJust when you need it toAs I pace back and forth all this time'CauseI honestly believed in youHoldin' on,The days drag onStupid girlI should've known, I should've knownThat I'm not a princessThis ain't a fairytaleI'm not the one you'll sweep off her feetLead her up the stairwellThis ain't Hollywood,This is a small townI was a dreamer before you went and let me downNow its too late for you and your White Horse,To come around.Maybe I was naïve,Got lost in your eyesI never really had a chance.My mistake I didnt know to be in loveyou had to fight to have the upper hand.I had so many dreams about you and meHappy endings;Now I knowI'm not a princessThis ain't a fairytaleI'm not the one you'll sweep off her feetLead her up the stairwellThis ain't Hollywood,This is a small townI was a dreamer before you went and let me down.Now its too late for you and your White Horse,To come around.And there you are on your kneesBegging for forgiveness,Begging for meJust like I always wanted,But I'm so sorryCause Im not your princessThis aint a fairytaleIm gonna find someone, Some dayWho might actually treat me well.This is a big world,That was a small townThere in my rearview mirror,Disappearing now.And it's too late for you and your White Horse,Now its too late for you and your White HorseTo catch me now.Oh whoa whoa whoa-ohTry and catch me nowWhoa-OhIt's too lateTo catch me now.</yandex:full-text>
</item><item>
<title>كد استايل منوي عمودي</title>
<link>http://7downloads.ir/template/106-kd-astael-mnve-amvde.html</link>
<description>    سلام امروز حالم زياد خوب نيست !   اما يه CSS گذاشتم ; يه منوي عمودي گرافيكي ; كدش تو ادامه است .   دمو </description>
<category>قالب</category>
<author>حسام</author>
<pubDate>Thu, 11 Feb 2010 13:14:25 +0300</pubDate>
<yandex:full-text>سلام امروز حالم زياد خوب نيست !   اما يه CSS گذاشتم ; يه منوي عمودي گرافيكي .كل كد :&amp;#60;!DOCTYPE html PUBLIC &amp;#34;-//W3C//DTD XHTML 1.0 Strict//EN&amp;#34; &amp;#34;http&amp;#58;//www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&amp;#34;&amp;#62;&amp;#60;html xmlns=&amp;#34;http&amp;#58;//www.w3.org/1999/xhtml&amp;#34; xml&amp;#58;lang=&amp;#34;en&amp;#34; lang=&amp;#34;en&amp;#34;&amp;#62;&amp;#60;head&amp;#62;&amp;#60;title&amp;#62;Css demo 1&amp;#60;/title&amp;#62;&amp;#60;meta http-equiv=&amp;#34;Content-Type&amp;#34; content=&amp;#34;text/html; charset=ISO-8859-1&amp;#34; /&amp;#62;&amp;#60;style&amp;#62;body {    font-family&amp;#58; Verdana, Arial, Helvetica, sans-serif, Tahoma;    font-size&amp;#58; 80%;    font-weight&amp;#58; bold;    }    h1 {    font-family&amp;#58;Verdana, Arial, Helvetica, sans-serif;    font-size&amp;#58;16px;    font-weight&amp;#58;bold;    margin&amp;#58;0;    padding&amp;#58;0;    }hr {    border&amp;#58;none;    border-top&amp;#58;1px solid #CCCCCC;    height&amp;#58;1px;    margin-bottom&amp;#58;25px;    }ul {    list-style&amp;#58; none;    margin&amp;#58; 0;    padding&amp;#58; 0;    }#menu {    width&amp;#58; 200px;    border&amp;#58; 1px solid #ccc;    margin&amp;#58; 10px;    }    #menu li a {      height&amp;#58; 32px;      voice-family&amp;#58; &amp;#34;\&amp;#34;}\&amp;#34;&amp;#34;;       voice-family&amp;#58; inherit;      height&amp;#58; 24px;    text-decoration&amp;#58; none;    }        #menu li a&amp;#58;link, #menu li a&amp;#58;visited {    color&amp;#58; #888;    display&amp;#58; block;    background&amp;#58; url&amp;#40;menu.gif&amp;#41;;    padding&amp;#58; 8px 0 0 30px;    }    #menu li a&amp;#58;hover, #menu li a&amp;#58;active {    color&amp;#58; #283A50;    background&amp;#58; url&amp;#40;menu.gif&amp;#41; 0 -32px;    padding&amp;#58; 8px 0 0 30px;    }&amp;#60;/style&amp;#62; &amp;#60;/head&amp;#62;&amp;#60;body&amp;#62;&amp;#60;p dir=&amp;#34;rtl&amp;#34; align=&amp;#34;center&amp;#34;&amp;#62;&amp;#60;span style=&amp;#34;font-weight&amp;#58; 400&amp;#34;&amp;#62;&amp;#60;font face=&amp;#34;Tahoma&amp;#34;&amp;#62;Css&amp;#60;span lang=&amp;#34;fa&amp;#34;&amp;#62; &amp;amp;#1605;&amp;amp;#1606;&amp;amp;#1608;&amp;amp;#1610; &amp;amp;#1593;&amp;amp;#1605;&amp;amp;#1608;&amp;amp;#1583;&amp;amp;#1610; &amp;#60;/span&amp;#62;&amp;#40;www.7downloads.ir&amp;#41;&amp;#60;/font&amp;#62;&amp;#60;/span&amp;#62;&amp;#60;/p&amp;#62;&amp;#60;hr /&amp;#62;&amp;#60;div id=&amp;#34;menu&amp;#34; style=&amp;#34;width&amp;#58; 200px; height&amp;#58; 170px&amp;#34;&amp;#62;  &amp;#60;ul&amp;#62;    &amp;#60;li&amp;#62;&amp;#60;a href=&amp;#34;http&amp;#58;//www.7downloads.ir/&amp;#34;&amp;#62;Link 1&amp;#60;/a&amp;#62;&amp;#60;/li&amp;#62;    &amp;#60;li&amp;#62;&amp;#60;a href=&amp;#34;http&amp;#58;//www.7downloads.ir/&amp;#34;&amp;#62;Link 2&amp;#60;/a&amp;#62;&amp;#60;/li&amp;#62;    &amp;#60;li&amp;#62;&amp;#60;a href=&amp;#34;http&amp;#58;//www.7downloads.ir/&amp;#34;&amp;#62;Link 3&amp;#60;/a&amp;#62;&amp;#60;/li&amp;#62;    &amp;#60;li&amp;#62;&amp;#60;a href=&amp;#34;http&amp;#58;//www.7downloads.ir/&amp;#34;&amp;#62;    Lyric center&amp;#60;/a&amp;#62;&amp;#60;/li&amp;#62;    &amp;#60;li&amp;#62;&amp;#60;a href=&amp;#34;http&amp;#58;//www.7downloads.ir/&amp;#34;&amp;#62;Link 5&amp;#60;/a&amp;#62;&amp;#60;/li&amp;#62;    &amp;#60;li&amp;#62;&amp;#60;a href=&amp;#34;http&amp;#58;//www.7downloads.ir/&amp;#34;&amp;#62;Link 6&amp;#60;/a&amp;#62;&amp;#60;/li&amp;#62;    &amp;#60;li&amp;#62;&amp;#60;a rel=&amp;#34;nofollow&amp;#34; target=&amp;#34;_blank&amp;#34; href=&amp;#34;http&amp;#58;//www.7downloads.ir/&amp;#34; title=&amp;#34;gallery&amp;#34;&amp;#62;    Pic gallery&amp;#60;/a&amp;#62;&amp;#60;/li&amp;#62;  &amp;#60;/ul&amp;#62;&amp;#60;/div&amp;#62;&amp;#60;/body&amp;#62;&amp;#60;/html&amp;#62;كد استايل CSS&amp;#60;style&amp;#62;body {    font-family&amp;#58; Verdana, Arial, Helvetica, sans-serif, Tahoma;    font-size&amp;#58; 80%;    font-weight&amp;#58; bold;    }    h1 {    font-family&amp;#58;Verdana, Arial, Helvetica, sans-serif;    font-size&amp;#58;16px;    font-weight&amp;#58;bold;    margin&amp;#58;0;    padding&amp;#58;0;    }hr {    border&amp;#58;none;    border-top&amp;#58;1px solid #CCCCCC;    height&amp;#58;1px;    margin-bottom&amp;#58;25px;    }ul {    list-style&amp;#58; none;    margin&amp;#58; 0;    padding&amp;#58; 0;    }#menu {    width&amp;#58; 200px;    border&amp;#58; 1px solid #ccc;    margin&amp;#58; 10px;    }    #menu li a {      height&amp;#58; 32px;      voice-family&amp;#58; &amp;#34;\&amp;#34;}\&amp;#34;&amp;#34;;       voice-family&amp;#58; inherit;      height&amp;#58; 24px;    text-decoration&amp;#58; none;    }        #menu li a&amp;#58;link, #menu li a&amp;#58;visited {    color&amp;#58; #888;    display&amp;#58; block;    background&amp;#58; url&amp;#40;menu.gif&amp;#41;;    padding&amp;#58; 8px 0 0 30px;    }    #menu li a&amp;#58;hover, #menu li a&amp;#58;active {    color&amp;#58; #283A50;    background&amp;#58; url&amp;#40;menu.gif&amp;#41; 0 -32px;    padding&amp;#58; 8px 0 0 30px;    }&amp;#60;/style&amp;#62; اين عكس رو بايد تو فولدري كه استايل رو ميذاريد باشه : menu pic</yandex:full-text>
</item><item>
<title>ليريك Adam lambert</title>
<link>http://7downloads.ir/lyric/105-lerek-adam-lambert.html</link>
<description>  سلام ايندفه با آدام لمبرت !!    اينجا تا يه مدت ديگه بزرگترين مركز ليريك خاورميانه ميشه ! سعي ميكنم پست هاي متفاوتي بدم ! دارم يه كالكشن عكس درس ميكنم كه بزارم !  Time For miracle - Adam lambert</description>
<category>ليريك, آدام لمبرت</category>
<author>حسام</author>
<pubDate>Wed, 10 Feb 2010 20:24:28 +0300</pubDate>
<yandex:full-text>سلام ايندفه با آدام لمبرت !!    اينجا تا يه مدت ديگه بزرگترين مركز ليريك خاورميانه ميشه ! سعي ميكنم پست هاي متفاوتي بدم ! دارم يه كالكشن عكس درس ميكنم كه بزارم !Time For miracle - Adam lambertTime For Miracles lyricsIt’s late at night and I can’t sleepMissing you just runs too deepOh I can’t breathe thinking of your smileEvery kiss I can’t forgetThis aching heart ain’t broken yetOh God I wish I could make you seeCause I know this flame isn’t dyingSo nothing can stop me from tryingBaby you know thatMaybe it’s time for miraclesCause I ain’t giving up on loveYou know thatMaybe it’s time for miraclesCause I ain’t giving up on loveNo I ain’t giving up on usI just want to be with youCuz living is so hard to doWhen all I know is trapped inside your eyesThe future I cannot forgetThis aching heart ain’t broken yetOh God I wish I could make you seeCuz I know this flame isn’t dyingSo nothing can stop me from tryingBaby you know thatMaybe it’s time for miraclesCuz I ain’t giving up on loveYou know thatMaybe it’s time for miraclesCause I ain’t giving up on loveNo I ain’t giving up on usBABY CAN YOU FEEL IT (COMIN’)YOU KNOW I CAN HEAR IT (HERE IN MY SOUL)BABY WHEN YOU FEEL ME FEELING YOUYOU KNOW IT’S TIMEBaby you know thatMaybe it’s time for miraclesCuz I ain’t giving up on loveYou know thatMaybe it’s time for miraclesCuz I ain’t giving up on loveYou know thatMaybe it's time for miraclesCuz I ain't giving up on loveNo I ain’t giving up on usI ain’t giving up noOh I ain’t giving up on us</yandex:full-text>
</item><item>
<title>ليريك Avril - Alice</title>
<link>http://7downloads.ir/lyric/104-lerek-avril-alice.html</link>
<description>  اينم از ليريك امروز ::: آخرين اجراي آوريل كه اسمش آليس هست ..»»</description>
<category>ليريك, َآوريل </category>
<author>حسام</author>
<pubDate>Tue, 09 Feb 2010 23:08:00 +0300</pubDate>
<yandex:full-text>اينم از ليريك امروز ::: آخرين اجراي آوريل كه اسمش آليس هست ..»»Alice Underground lyricsTrippin outSpinning aroundI'm undergroundI fell downYeah I fell downI'm freaking out, where am I now?Upside down and I can't stop it nowCan't stop me now, oh ohI, I'll get byI, I'll surviveWhen the world's crashing downWhen I fall and hit the groundI will turn myself aroundDon't you try to stop meI, I won't cryI found myself in WonderlandGet back on my feet, on the groundIs this real?Is this pretend?I'll take a stand until the endI, I'll get byI, I'll surviveWhen the world's crashing downWhen I fall and hit the groundI will turn myself aroundDon't you try to stop meI, I won't cryI, I'll get byI, I'll surviveWhen the world's crashing downWhen I fall and hit the groundI will turn myself aroundDon't you try to stop meI, and I won't cry</yandex:full-text>
</item><item>
<title>ليريك Taylor swift</title>
<link>http://7downloads.ir/lyric/103-lerek-taylor-swift.html</link>
<description> سلام :: نميدونيد چقدر سخته كه هم دنبال كار بگردم هم بيام پست بدم !!    خيلي آدم خسته ميشه اما چون شماهارو دوست دارم سعي ميكنم زود زود بيام  </description>
<category>ليريك, تيلور سويفت</category>
<author>حسام</author>
<pubDate>Mon, 08 Feb 2010 21:11:00 +0300</pubDate>
<yandex:full-text>سلام ::نميدونيد چقدر سخته كه هم دنبال كار بگردم هم بيام پست بدم !!    خيلي آدم خسته ميشه اما چون شماهارو دوست دارم سعي ميكنم زود زود بيام   Today Was A Fairytale lyricsToday was a fairy taleYou were the prince I used to be a damsel in distressYou took me by the handAnd you picked me up at sixToday was a fairy taleToday was a fairy taleToday was a fairy taleI wore a dressYou wore a dark gray t-shirtYou told me I was pretty when I looked like a messToday was a fairy taleTime slows downWhenever you're aroundCan you feel this Magic in the air?It must've been the way you kissEd meFell in love when I saw you standin' thereIt must've been the wayToday was a fairy taleIt must've been the wayToday was a fairy taleToday was a fairy taleYou've got a smile That takes me to another planetEvery move you make Every thing you say is rightToday was a fairy taleToday was a fairy taleAll that I could say is now it's Getting so much clearerNothing made sense til the time I saw your faceToday was a fairy taleTime slows downWhenever you're around-YeahCan you feel this magic in the air?It must've been the way you kissed meFell in love when I saw you standin' thereIt must've been the wayToday was a fairy taleIt must've been the wayToday was a fairy taleTime slows downWhenever you're aroundI can feel my heartIt's beating in my chestDid you feel itI can't put this downCan you feel this magic in the air?It must've been the way you kissed meFell in love when I saw you standin' thereIt must've been the wayCan you feel this magic in the air?It must've been the way you kissed meFell in love when I saw you standin' thereIt must've been the wayToday was a fairy taleIt must've been the wayToday was a fairy taleOh Oh Ooh Yeah ohToday was a fairy tale</yandex:full-text>
</item></channel></rss>