النتائج 1 إلى 12 من 12

الموضوع: [ شي جميل ] أحسب عمرك بكل دقة ( اتمنى الدخول )

  1. #1
    عضو فعال
    تاريخ التسجيل
    May 2007
    المشاركات
    1,227

    [ شي جميل ] أحسب عمرك بكل دقة ( اتمنى الدخول )



    بسم الله الرحمن الرحيم

    السلام عليكم ورحمة الله وبركاته ..

    اليوم وانا اتصفح بالنت كالعادة لا شغله ولا مشغلة لقيت شي اعجبني و هو عبارة عن طريقة تحسب عمرك كامل ..

    سنة
    يوم
    ساعة
    دقيقة
    ثانية

    ويجيب كم بقي على ميلادك واعجبت بهذا الشي و حبيت اسئلكم لو احد عنده الكود او السكربت ياليت لا يبخل علينا وان شاء الله نفيده بالمستقبل ..

    مثال : http://www.noriny.com/yourold/

    اخوكم | Abu Fahd





    __________________
    حسناً، جرّب الحياة.
    نصائح مهمة: لتفادي سرقة الدومينات.

    للمراسلة إضغط هنا فقط .


  2. #2
    عضو نشيط
    تاريخ التسجيل
    Sep 2002
    المشاركات
    207


    السلام عليكم
    هذا الكود حصلت عليه من http://javascript.programmershelp.co.uk/calage.php
    وقمت بترجمة بعض المصطلحات وان شاءالله يشتغل زين
    سلام


    كود:
                            <script language="JavaScript">
    <!-- Original:  Dev Pragad (devpragad@yahoo.com) -->
    <!-- Web Site:  http://www.geocities.com/devpragad -->
    <!-- Modified by:  Ronnie T. Moore, Editor -->
    <!-- Begin
    function run() {
    with (document.agecalc) {
    dd = parseInt(day.selectedIndex) + 1;
    mm = parseInt(month.selectedIndex) + 1;
    yy = year.value;
    if (yy.length != 4 || isNaN(yy)) {
    document.agecalc.timealive.value = "فضلاً اكمل بيانات سنة الميلاد";
    document.agecalc.year.select();
    document.agecalc.year.focus();
    return;
       }
    }
    days = new Date();
    gdate = days.getDate();
    gmonth = days.getMonth();
    gyear = days.getYear();
    if (gyear < 2000) gyear += 1900;
    age = gyear - yy;
    if ((mm == (gmonth + 1)) && (dd <= parseInt(gdate))) {
    age = age; 
    } else {
    if (mm <= (gmonth)) {
    age = age;
    } else {
    age = age - 1; 
       }
    }
    if (age == 0)
    age = age;
    document.agecalc.timealive.value = "عمرك " + age+ "  . . .\n\n";
    if (mm <= (gmonth + 1))
    age = age - 1;
    if ((mm == (gmonth + 1)) && (dd > parseInt(gdate))) 
    age = age + 1;
    var m;
    var n;
    if (mm == 12) n = 31 - dd;
    if (mm == 11) n = 61 - dd;
    if (mm == 10) n = 92 - dd;
    if (mm == 9) n = 122 - dd;
    if (mm == 8) n = 153 - dd;
    if (mm == 7) n = 184 - dd;
    if (mm == 6) n = 214 - dd;
    if (mm == 5) n = 245 - dd;
    if (mm == 4) n = 275 - dd;
    if (mm == 3) n = 306 - dd;
    if (mm == 2) { n = 334 - dd; if (leapyear(yy)) n++; }
    if (mm == 1) { n = 365 - dd; if (leapyear(yy)) n++; }
    if (gmonth == 1) m = 31;
    if (gmonth == 2) {
    m = 59;
    if (leapyear(gyear)) m++;
    }
    if (gmonth == 3)  { m = 90;  if (leapyear(gyear)) m++; }
    if (gmonth == 4)  { m = 120; if (leapyear(gyear)) m++; }
    if (gmonth == 5)  { m = 151; if (leapyear(gyear)) m++; }
    if (gmonth == 6)  { m = 181; if (leapyear(gyear)) m++; }
    if (gmonth == 7)  { m = 212; if (leapyear(gyear)) m++; }
    if (gmonth == 8)  { m = 243; if (leapyear(gyear)) m++; }
    if (gmonth == 9)  { m = 273; if (leapyear(gyear)) m++; }
    if (gmonth == 10) { m = 304; if (leapyear(gyear)) m++; }
    if (gmonth == 11) { m = 334; if (leapyear(gyear)) m++; }
    if (gmonth == 12) { m = 365; if (leapyear(gyear)) m++; }
    months = age * 12;
    months += 12 - parseInt(mm);
    months += gmonth;
    totdays = (parseInt(age) * 365);
    totdays += age / 4;
    totdays = parseInt(totdays) + gdate + m + n;
    if (gmonth == 1) p = 31 + gdate;
    if (gmonth == 2) {
    p = 59 + gdate;
    if (leapyear(gyear)) m = m+1;
    }
    if (gmonth == 3)  { p = 90 + gdate;  if (leapyear(gyear)) p++; }
    if (gmonth == 4)  { p = 120 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 5)  { p = 151 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 6)  { p = 181 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 7)  { p = 212 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 8)  { p = 243 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 9)  { p = 273 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 10) { p = 304 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 11) { p = 334 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 12) { p = 365 + gdate; if (leapyear(gyear)) p++; }
    weeks = (age * 365) + n + p;
    weeks = weeks / 7;
    etcdays = parseFloat(weeks) - parseInt(weeks);
    etcdays = Math.round(etcdays * 7);
    weeks = parseInt(weeks);
    etcdays += parseInt(age / 4);
    if (etcdays > 7)
    weeks += parseInt(etcdays / 7);
    document.agecalc.timealive.value += "     أو " + weeks + " أسبوع\n";
    document.agecalc.timealive.value += "     أو " + months + " شهر\n";
    document.agecalc.timealive.value += "     أو " + totdays + " أيام\n";
    var time = new Date();
    ghour = time.getHours();
    gmin = time.getMinutes();
    gsec = time.getSeconds(); 
    hour = ((age * 365) + n + p) * 24;
    hour += (parseInt(age / 4) * 24);
    document.agecalc.timealive.value += "     or " + hour + " ساعه \n";
    var min = (hour * 60) + gmin;
    document.agecalc.timealive.value += "     or " + min + " دقيقة \n";
    sec = (min * 60) + gsec;
    document.agecalc.timealive.value += "     or " + sec + " ثانية ";
    mm = mm - 1;
    var r;
    if (mm == 0) r = 0;
    if (mm == 1) r = 31;
    if (mm == 2) { r = 59; if (leapyear(gyear)) m++; }
    if (mm == 3)  { r = 90;  if (leapyear(gyear)) r++; }
    if (mm == 4)  { r = 120; if (leapyear(gyear)) r++; }
    if (mm == 5)  { r = 151; if (leapyear(gyear)) r++; }
    if (mm == 6)  { r = 181; if (leapyear(gyear)) r++; }
    if (mm == 7)  { r = 212; if (leapyear(gyear)) r++; }
    if (mm == 8)  { r = 243; if (leapyear(gyear)) r++; }
    if (mm == 9)  { r = 273; if (leapyear(gyear)) r++; }
    if (mm == 10) { r = 304; if (leapyear(gyear)) r++; }
    if (mm == 11) { r = 334; if (leapyear(gyear)) r++; }
    mm = mm + 1;
    r = parseInt(r) + parseInt(dd);
    
    if ((mm >= (gmonth + 1)) && (dd > gdate)) {
    bday = r - m - gdate;
    }
    else {
    if ((leapyear(gyear)) && ((mm > 2) && (dd < 29))) {
    a = 366;
    } else {
    a = 365;
    }
    bday = a + (r - m - gdate);
    }
    nhour = 24 - parseInt(ghour);
    nmin = 60 - parseInt(gmin);
    nsec = 60 - parseInt(gsec);
    while (bday > 366) bday -= 365;
    if (((bday == 366) && (leapyear(gyear)) || ((bday == 365) && (!leapyear(gyear))))) {
    document.agecalc.timealive.value += "\n\nAnd, today is your birthday!";
    } else {
    document.agecalc.timealive.value += "\n\nAnd, your next birthday is in:\n"
    + bday + " days " + nhour + " hrs " + nmin + " mins " + nsec + " secs";
    setTimeout("run()", 1000);
       }
    }
    function leapyear(a) {
    if (((a%4 == 0) && (a%100 != 0)) || (a%400 == 0))
    return true;
    else
    return false;
    }
    //  End -->
                        </script>
                            <center>
                              <form name=agecalc>
                              <table>
                              <tr>
                              <td align=center>
          Birthday:
          <select name=select size=1>
            <option>January
            <option>February
            <option>March
            <option>April
            <option>May
            <option>June
            <option>July
            <option>August
            <option>September
            <option>October
            <option>November
            <option>December
          </select>
          <select name=day size=1>
            <option>1
            <option>2
            <option>3
            <option>4
            <option>5
            <option>6
            <option>7
            <option>8
            <option>9
            <option>10
            <option>11
            <option>12
            <option>13
            <option>14
            <option>15
            <option>16
            <option>17
            <option>18
            <option>19
            <option>20
            <option>21
            <option>22
            <option>23
            <option>24
            <option>25
            <option>26
            <option>27
            <option>28
            <option>29
            <option>30
            <option>31
          </select>
          <input type=text name=year size=4 maxlength=4>
          <br>
          <input type=button name=start value="Calculate" onClick="run();">
          <br>
          <br>
          <textarea rows=12 cols=35 name=timealive>






    __________________
    إستخدم ملفك الخاص لكتابة توقيعك

  3. #3
    عضو فعال
    تاريخ التسجيل
    May 2007
    المشاركات
    1,227


    مشكور اخوي على مساعدتك لي لكن للأسف الكود يوجد به خطأ جربت و قمت بوضعه في ملف php لكن للأسف لم يفلح حظي .
    قمت أيضا ً بوضع اكثر من طريقة لكن لم يفلح معي !

    سوف احاول المحاولة مرة اخرى لعله يفلح معي ..

    اخوك | Abu Fahd





    __________________
    حسناً، جرّب الحياة.
    نصائح مهمة: لتفادي سرقة الدومينات.

    للمراسلة إضغط هنا فقط .



  4. يعطيك العافيه اخوي ابو فهد

    تمنيت لو بعد يحسبها بالهجري .. ويكون لك الخيار يا تحسب بالميلادي او الهجري

    لكن .. يعنطيك الف عافيه

    تحيتي لك





    __________________
    -----------------------------------------------------------
    :: همـ المشاعر ــس :: عبد الله :: للتصميم و التطوير ::
    http://www.mr-sa.com
    -----------------------------------------------------------

  5. #5
    عضو نشيط
    تاريخ التسجيل
    Sep 2002
    المشاركات
    207


    كود:
    <b>أدخل تاريخ ميلادك بالتاريخ الميلادي فقط</b><p>
    <script language="JavaScript">
    
    <!-- Begin
    function run() {
    with (document.agecalc) {
    dd = parseInt(day.selectedIndex) + 1;
    mm = parseInt(month.selectedIndex) + 1;
    yy = year.value;
    if (yy.length != 4 || isNaN(yy)) {
    document.agecalc.timealive.value = "فضلاً أدخل سنة ميلادك من 4 أرقام";
    document.agecalc.year.select();
    document.agecalc.year.focus();
    return;
       }
    }
    days = new Date();
    gdate = days.getDate();
    gmonth = days.getMonth();
    gyear = days.getYear();
    if (gyear < 2000) gyear += 1900;
    age = gyear - yy;
    if ((mm == (gmonth + 1)) && (dd <= parseInt(gdate))) {
    age = age; 
    } else {
    if (mm <= (gmonth)) {
    age = age;
    } else {
    age = age - 1; 
       }
    }
    if (age == 0)
    age = age;
    document.agecalc.timealive.value = "عمرك الآن " + age+ " سنة . . .\n\n";
    if (mm <= (gmonth + 1))
    age = age - 1;
    if ((mm == (gmonth + 1)) && (dd > parseInt(gdate))) 
    age = age + 1;
    var m;
    var n;
    if (mm == 12) n = 31 - dd;
    if (mm == 11) n = 61 - dd;
    if (mm == 10) n = 92 - dd;
    if (mm == 9) n = 122 - dd;
    if (mm == 8) n = 153 - dd;
    if (mm == 7) n = 184 - dd;
    if (mm == 6) n = 214 - dd;
    if (mm == 5) n = 245 - dd;
    if (mm == 4) n = 275 - dd;
    if (mm == 3) n = 306 - dd;
    if (mm == 2) { n = 334 - dd; if (leapyear(yy)) n++; }
    if (mm == 1) { n = 365 - dd; if (leapyear(yy)) n++; }
    if (gmonth == 1) m = 31;
    if (gmonth == 2) {
    m = 59;
    if (leapyear(gyear)) m++;
    }
    if (gmonth == 3)  { m = 90;  if (leapyear(gyear)) m++; }
    if (gmonth == 4)  { m = 120; if (leapyear(gyear)) m++; }
    if (gmonth == 5)  { m = 151; if (leapyear(gyear)) m++; }
    if (gmonth == 6)  { m = 181; if (leapyear(gyear)) m++; }
    if (gmonth == 7)  { m = 212; if (leapyear(gyear)) m++; }
    if (gmonth == 8)  { m = 243; if (leapyear(gyear)) m++; }
    if (gmonth == 9)  { m = 273; if (leapyear(gyear)) m++; }
    if (gmonth == 10) { m = 304; if (leapyear(gyear)) m++; }
    if (gmonth == 11) { m = 334; if (leapyear(gyear)) m++; }
    if (gmonth == 12) { m = 365; if (leapyear(gyear)) m++; }
    months = age * 12;
    months += 12 - parseInt(mm);
    months += gmonth;
    totdays = (parseInt(age) * 365);
    totdays += age / 4;
    totdays = parseInt(totdays) + gdate + m + n;
    if (gmonth == 1) p = 31 + gdate;
    if (gmonth == 2) {
    p = 59 + gdate;
    if (leapyear(gyear)) m = m+1;
    }
    if (gmonth == 3)  { p = 90 + gdate;  if (leapyear(gyear)) p++; }
    if (gmonth == 4)  { p = 120 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 5)  { p = 151 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 6)  { p = 181 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 7)  { p = 212 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 8)  { p = 243 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 9)  { p = 273 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 10) { p = 304 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 11) { p = 334 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 12) { p = 365 + gdate; if (leapyear(gyear)) p++; }
    weeks = (age * 365) + n + p;
    weeks = weeks / 7;
    etcdays = parseFloat(weeks) - parseInt(weeks);
    etcdays = Math.round(etcdays * 7);
    weeks = parseInt(weeks);
    etcdays += parseInt(age / 4);
    if (etcdays > 7)
    weeks += parseInt(etcdays / 7);
    document.agecalc.timealive.value += "     او " + weeks + " اسبوعاً\n";
    document.agecalc.timealive.value += "     او " + months + " شهراً\n";
    document.agecalc.timealive.value += "     او " + totdays + " يوماً\n";
    var time = new Date();
    ghour = time.getHours();
    gmin = time.getMinutes();
    gsec = time.getSeconds(); 
    hour = ((age * 365) + n + p) * 24;
    hour += (parseInt(age / 4) * 24);
    document.agecalc.timealive.value += "     او " + hour + " ساعة\n";
    var min = (hour * 60) + gmin;
    document.agecalc.timealive.value += "     او " + min + " دقيقة\n";
    sec = (min * 60) + gsec;
    document.agecalc.timealive.value += "     او " + sec + " ثانية";
    mm = mm - 1;
    var r;
    if (mm == 0) r = 0;
    if (mm == 1) r = 31;
    if (mm == 2) { r = 59; if (leapyear(gyear)) m++; }
    if (mm == 3)  { r = 90;  if (leapyear(gyear)) r++; }
    if (mm == 4)  { r = 120; if (leapyear(gyear)) r++; }
    if (mm == 5)  { r = 151; if (leapyear(gyear)) r++; }
    if (mm == 6)  { r = 181; if (leapyear(gyear)) r++; }
    if (mm == 7)  { r = 212; if (leapyear(gyear)) r++; }
    if (mm == 8)  { r = 243; if (leapyear(gyear)) r++; }
    if (mm == 9)  { r = 273; if (leapyear(gyear)) r++; }
    if (mm == 10) { r = 304; if (leapyear(gyear)) r++; }
    if (mm == 11) { r = 334; if (leapyear(gyear)) r++; }
    mm = mm + 1;
    r = parseInt(r) + parseInt(dd);
    
    if ((mm >= (gmonth + 1)) && (dd > gdate)) {
    bday = r - m - gdate;
    }
    else {
    if ((leapyear(gyear)) && ((mm > 2) && (dd < 29))) {
    a = 366;
    } else {
    a = 365;
    }
    bday = a + (r - m - gdate);
    }
    nhour = 24 - parseInt(ghour);
    nmin = 60 - parseInt(gmin);
    nsec = 60 - parseInt(gsec);
    while (bday > 366) bday -= 365;
    if (((bday == 366) && (leapyear(gyear)) || ((bday == 365) && (!leapyear(gyear))))) {
    document.agecalc.timealive.value += "\n\اليوم هو عيد ميلادك ,, الف مبروك";
    } else {
    document.agecalc.timealive.value += "\n\عيد ميلادك القادم بعد :\n"
    + bday + " يوم و " + nhour + " ساعة و " + nmin + " دقيقة و " + nsec + " ثانية";
    setTimeout("run()", 1000);
       }
    }
    function leapyear(a) {
    if (((a%4 == 0) && (a%100 != 0)) || (a%400 == 0))
    return true;
    else
    return false;
    }
    //  End -->
                                  </script>
                                            <input onclick="run();" type="button" value="إحسب" name="start" style="color: #000000">
                                            <select size="1" name="month" style="color: #000000; font-family:Tahoma">
                                            <option selected>الشهر</option>
                                            <option>January</option>
                                            <option>February</option>
                                            <option>March</option>
                                            <option>April</option>
                                            <option>May</option>
                                            <option>June</option>
                                            <option>July</option>
                                            <option>August</option>
                                            <option>September</option>
                                            <option>October</option>
                                            <option>November</option>
                                            <option>December</option>
                                            </select>
                                            <select size="1" name="day" style="color: #000000">
                                            <option selected>اليوم</option>
                                            <option>1</option>
                                            <option>2</option>
                                            <option>3</option>
                                            <option>4</option>
                                            <option>5</option>
                                            <option>6</option>
                                            <option>7</option>
                                            <option>8</option>
                                            <option>9</option>
                                            <option>10</option>
                                            <option>11</option>
                                            <option>12</option>
                                            <option>13</option>
                                            <option>14</option>
                                            <option>15</option>
                                            <option>16</option>
                                            <option>17</option>
                                            <optiopleasen>
                                            <option>18</option>
                                            <option>19</option>
                                            <option>20</option>
                                            <option>21</option>
                                            <option>22</option>
                                            <option>23</option>
                                            <option>24</option>
                                            <option>25</option>
                                            <option>26</option>
                                            <option>27</option>
                                            <option>28</option>
                                            <option>29</option>
                                            <option>30</option>
                                            <option>31</option>
                                            </select>
                                            <input maxLength="4" size="6" value="السنة" name="year" style="color: #000000">
    										<form name="agecalc">
                                    <div align="center">
                                      <center>
                                      <table border="0" id="table8" width="45%">
                                        <tr>
                                          <td align="middle" dir="rtl" bgcolor="#FFFFFF">
                                          <div style="border: 3px double #FFFFFF">
                                            
                                            <font face="Tahoma">
                                            <textarea name="timealive" rows="12" cols="49"></textarea>
    الأول كان فيه خطا من الموقع الرئيسي جرب هذا





    __________________
    إستخدم ملفك الخاص لكتابة توقيعك

  6. #6
    عضو نشيط جدا
    تاريخ التسجيل
    Sep 2006
    المشاركات
    405


    مشكور يالغالي

    وايضا انا اضفت له التاريخ الهجري بس اعتقد انو نفس حسابه

    كود HTML:
    <p align="center"><b>أدخل تاريخ ميلادك بالتاريخ الميلادي او الهجري فقط</b></p>
    <p align="center">
    <script language="JavaScript">
    
    <!-- Begin
    function run() {
    with (document.agecalc) {
    dd = parseInt(day.selectedIndex) + 1;
    mm = parseInt(month.selectedIndex) + 1;
    yy = year.value;
    if (yy.length != 4 || isNaN(yy)) {
    document.agecalc.timealive.value = "فضلاً أدخل سنة ميلادك من 4 أرقام";
    document.agecalc.year.select();
    document.agecalc.year.focus();
    return;
       }
    }
    days = new Date();
    gdate = days.getDate();
    gmonth = days.getMonth();
    gyear = days.getYear();
    if (gyear < 2000) gyear += 1900;
    age = gyear - yy;
    if ((mm == (gmonth + 1)) && (dd <= parseInt(gdate))) {
    age = age; 
    } else {
    if (mm <= (gmonth)) {
    age = age;
    } else {
    age = age - 1; 
       }
    }
    if (age == 0)
    age = age;
    document.agecalc.timealive.value = "عمرك الآن " + age+ " سنة . . .\n\n";
    if (mm <= (gmonth + 1))
    age = age - 1;
    if ((mm == (gmonth + 1)) && (dd > parseInt(gdate))) 
    age = age + 1;
    var m;
    var n;
    if (mm == 12) n = 31 - dd;
    if (mm == 11) n = 61 - dd;
    if (mm == 10) n = 92 - dd;
    if (mm == 9) n = 122 - dd;
    if (mm == 8) n = 153 - dd;
    if (mm == 7) n = 184 - dd;
    if (mm == 6) n = 214 - dd;
    if (mm == 5) n = 245 - dd;
    if (mm == 4) n = 275 - dd;
    if (mm == 3) n = 306 - dd;
    if (mm == 2) { n = 334 - dd; if (leapyear(yy)) n++; }
    if (mm == 1) { n = 365 - dd; if (leapyear(yy)) n++; }
    if (gmonth == 1) m = 31;
    if (gmonth == 2) {
    m = 59;
    if (leapyear(gyear)) m++;
    }
    if (gmonth == 3)  { m = 90;  if (leapyear(gyear)) m++; }
    if (gmonth == 4)  { m = 120; if (leapyear(gyear)) m++; }
    if (gmonth == 5)  { m = 151; if (leapyear(gyear)) m++; }
    if (gmonth == 6)  { m = 181; if (leapyear(gyear)) m++; }
    if (gmonth == 7)  { m = 212; if (leapyear(gyear)) m++; }
    if (gmonth == 8)  { m = 243; if (leapyear(gyear)) m++; }
    if (gmonth == 9)  { m = 273; if (leapyear(gyear)) m++; }
    if (gmonth == 10) { m = 304; if (leapyear(gyear)) m++; }
    if (gmonth == 11) { m = 334; if (leapyear(gyear)) m++; }
    if (gmonth == 12) { m = 365; if (leapyear(gyear)) m++; }
    months = age * 12;
    months += 12 - parseInt(mm);
    months += gmonth;
    totdays = (parseInt(age) * 365);
    totdays += age / 4;
    totdays = parseInt(totdays) + gdate + m + n;
    if (gmonth == 1) p = 31 + gdate;
    if (gmonth == 2) {
    p = 59 + gdate;
    if (leapyear(gyear)) m = m+1;
    }
    if (gmonth == 3)  { p = 90 + gdate;  if (leapyear(gyear)) p++; }
    if (gmonth == 4)  { p = 120 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 5)  { p = 151 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 6)  { p = 181 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 7)  { p = 212 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 8)  { p = 243 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 9)  { p = 273 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 10) { p = 304 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 11) { p = 334 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 12) { p = 365 + gdate; if (leapyear(gyear)) p++; }
    weeks = (age * 365) + n + p;
    weeks = weeks / 7;
    etcdays = parseFloat(weeks) - parseInt(weeks);
    etcdays = Math.round(etcdays * 7);
    weeks = parseInt(weeks);
    etcdays += parseInt(age / 4);
    if (etcdays > 7)
    weeks += parseInt(etcdays / 7);
    document.agecalc.timealive.value += "     او " + weeks + " اسبوعاً\n";
    document.agecalc.timealive.value += "     او " + months + " شهراً\n";
    document.agecalc.timealive.value += "     او " + totdays + " يوماً\n";
    var time = new Date();
    ghour = time.getHours();
    gmin = time.getMinutes();
    gsec = time.getSeconds(); 
    hour = ((age * 365) + n + p) * 24;
    hour += (parseInt(age / 4) * 24);
    document.agecalc.timealive.value += "     او " + hour + " ساعة\n";
    var min = (hour * 60) + gmin;
    document.agecalc.timealive.value += "     او " + min + " دقيقة\n";
    sec = (min * 60) + gsec;
    document.agecalc.timealive.value += "     او " + sec + " ثانية";
    mm = mm - 1;
    var r;
    if (mm == 0) r = 0;
    if (mm == 1) r = 31;
    if (mm == 2) { r = 59; if (leapyear(gyear)) m++; }
    if (mm == 3)  { r = 90;  if (leapyear(gyear)) r++; }
    if (mm == 4)  { r = 120; if (leapyear(gyear)) r++; }
    if (mm == 5)  { r = 151; if (leapyear(gyear)) r++; }
    if (mm == 6)  { r = 181; if (leapyear(gyear)) r++; }
    if (mm == 7)  { r = 212; if (leapyear(gyear)) r++; }
    if (mm == 8)  { r = 243; if (leapyear(gyear)) r++; }
    if (mm == 9)  { r = 273; if (leapyear(gyear)) r++; }
    if (mm == 10) { r = 304; if (leapyear(gyear)) r++; }
    if (mm == 11) { r = 334; if (leapyear(gyear)) r++; }
    mm = mm + 1;
    r = parseInt(r) + parseInt(dd);
    
    if ((mm >= (gmonth + 1)) && (dd > gdate)) {
    bday = r - m - gdate;
    }
    else {
    if ((leapyear(gyear)) && ((mm > 2) && (dd < 29))) {
    a = 366;
    } else {
    a = 365;
    }
    bday = a + (r - m - gdate);
    }
    nhour = 24 - parseInt(ghour);
    nmin = 60 - parseInt(gmin);
    nsec = 60 - parseInt(gsec);
    while (bday > 366) bday -= 365;
    if (((bday == 366) && (leapyear(gyear)) || ((bday == 365) && (!leapyear(gyear))))) {
    document.agecalc.timealive.value += "\n\اليوم هو عيد ميلادك ,, الف مبروك";
    } else {
    document.agecalc.timealive.value += "\n\عيد ميلادك القادم بعد :\n"
    + bday + " يوم و " + nhour + " ساعة و " + nmin + " دقيقة و " + nsec + " ثانية";
    setTimeout("run()", 1000);
       }
    }
    function leapyear(a) {
    if (((a%4 == 0) && (a%100 != 0)) || (a%400 == 0))
    return true;
    else
    return false;
    }
    //  End -->
                                  </script>
                                            <input onclick="run();" type="button" value="إحسب" name="start" style="color: #000000">
                                            <select size="1" name="month" style="color: #000000; font-family:Tahoma">
                                            <option selected>الشهر بالميلادي</option>
                                            <option>يناير</option>
                                            <option>فبراير</option>
                                            <option>مارس</option>
                                            <option>ابريل</option>
                                            <option>مايو</option>
                                            <option>يونيو</option>
                                            <option>يوليو</option>
                                            <option>أغسطس</option>
                                            <option>سبتمبر</option>
                                            <option>أكتوبر</option>
                                            <option>نوفمبر</option>
                                            <option>ديسمبر</option>
                                            </select>
                                            <select size="1" name="month0" style="color: #000000; font-family:Tahoma">
                                            <option selected>الشهر بالهجري</option>
                                            <option>محرم</option>
                                            <option>صفر</option>
                                            <option>ربيع الأول</option>
                                            <option>ربيع الآخر</option>
                                            <option>جمادى الأولى</option>
                                            <option>جمادى الآخرة</option>
                                            <option>رجب</option>
                                            <option>شعبان</option>
                                            <option>رمضان</option>
                                            <option>شوال</option>
                                            <option>ذو القعدة</option>
                                            <option>ذو الحجة</option>
                                            </select><select size="1" name="day" style="color: #000000">
                                            <option selected>اليوم</option>
                                            <option>1</option>
                                            <option>2</option>
                                            <option>3</option>
                                            <option>4</option>
                                            <option>5</option>
                                            <option>6</option>
                                            <option>7</option>
                                            <option>8</option>
                                            <option>9</option>
                                            <option>10</option>
                                            <option>11</option>
                                            <option>12</option>
                                            <option>13</option>
                                            <option>14</option>
                                            <option>15</option>
                                            <option>16</option>
                                            <option>17</option>
                                            <optiopleasen>
                                            <option>18</option>
                                            <option>19</option>
                                            <option>20</option>
                                            <option>21</option>
                                            <option>22</option>
                                            <option>23</option>
                                            <option>24</option>
                                            <option>25</option>
                                            <option>26</option>
                                            <option>27</option>
                                            <option>28</option>
                                            <option>29</option>
                                            <option>30</option>
                                            <option>31</option>
                                            </select>
                                            <input maxLength="4" size="6" value="السنة" name="year" style="color: #000000">
    										<form name="agecalc">
                                    <div align="center">
                                      <center>
                                      <table border="0" id="table8" width="45%">
                                        <tr>
                                          <td align="middle" dir="rtl" bgcolor="#FFFFFF">
                                          <div style="border: 3px double #FFFFFF">
                                            
                                            <font face="Tahoma">
                                            <textarea name="timealive" rows="12" cols="49"></textarea>
    اخوكم سلطان المالكي
    asas7.com <<< بعد تفعيل العضوية







  7. #7


    اخي بصراحة عيب تسأل هكذا سؤال

    هذا السورس للصفحة بكاملها

    لاحظ بداية الكود للجافا سكربت ونهايته ويكون هو كذلك

    وان لم تكن تعلم ذلك نزل الاكسبلورر 7 واضغط بيج ثم فيو سورس

    وسلامتك ..

    كود:
    <HTML dir="rtl">
    <HEAD>
    <meta http-equiv="Content-Language" content="ar-sa">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1256">
    </style>
    <meta name="keywords" content="احسب عمرك - احسب ميلادك - تاريخ ميلادك - نور عيني - احسب عمرك وتاريخ ميلادك بالثانية والدقيقه والساعة والاسبوع -حساب العمر - كم عمرك - عمري - عمري بالثانيه - تاريخ الميلاد - كم عمري">
    <meta name="description" content="احسب عمرك وتاريخ ميلادك بالثانية والدقيقه والساعة والاسبوع -حساب العمر - كم عمرك - عمري - عمري بالثانيه">
    <title>احسب عمرك , حساب العمر -&nbsp; نور عيني</title>
    
    <style>
    <!--
    P {
    	FONT:bold 8pt Tahoma
    }
    TD {
    	FONT:bold 8pt Tahoma
    }
    .smallfont {
    	FONT:bold 8pt Tahoma
    }	
    a:link {
    	FONT:bold 8pt Tahoma
    
    }
    -->
    </style>
    <style>
    BODY {
    scrollbar-face-color:#CF6381;
    scrollbar-highlight-color:#CF6381;
    scrollbar-3dlight-color:#AF4969;
    scrollbar-darkshadow-color:#AF4969;
    scrollbar-shadow-color:#EBBACB;
    scrollbar-arrow-color:#F9D0DC;
    scrollbar-track-color:#E6AABA;
    ;
    
    }
    -->
    </style>
    <style>
    <!--
    A:link {text-decoration: none;  color: #000000}
    A:visited {text-decoration: none;  color: #000000}
    A:active {text-decoration: none;  color: #000000}
    A:hover {text-decoration: none;  color: #B13051}
    //-->
    </style>
    
    </head>
    
    <base target="_self">
    
    <div align="center">
    <table border="0" width="100%" cellspacing="0" cellpadding="0">
    <tr>
    <td align="center">
    <html dir="rtl">
    
    <table height="100%" cellspacing="0" cellpadding="0" width="100%" border="0" dir="rtl">
    <tr>
    <td style="FONT-WEIGHT: normal; 
    
    FONT-SIZE: 12px; FONT-STYLE: normal; FONT-FAMILY: Tahoma; FONT-VARIANT: 
    
    normal" width="50%">&nbsp;</td>
    <td style="FONT-WEIGHT: normal; 
    
    FONT-SIZE: 12px; FONT-STYLE: normal; FONT-FAMILY: Tahoma; FONT-VARIANT: 
    
    normal" background="/images/bg_left.gif">
    <img src="/images/bg_left.gif" border="0"></td>
    <td style="FONT-WEIGHT: normal; 
    
    FONT-SIZE: 12px; FONT-STYLE: normal; FONT-FAMILY: Tahoma; FONT-VARIANT: 
    
    normal" background="/images/bg.gif" bgcolor="#F4C6D4" align="center" dir="ltr">
    <body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0" style="text-align: center; " bgcolor="#E7A3B7">
    
    </body>
    
    </html>
    <table cellspacing="0" cellpadding="0" width="116%" border="0">
    </table>
    <div align="center">
    
    <TABLE WIDTH="100%" BORDER=0 CELLPADDING=0 CELLSPACING=0 background="/images/head/noriny.com_head_02.gif">
    	<TR>
    		<TD ROWSPAN=2 width="100%" style="font-style: normal; font-variant: normal; font-weight: bold; font-size: 8pt; font-family: Tahoma">
    			&nbsp;</TD>
    		<TD style="font-style: normal; font-variant: normal; font-weight: bold; font-size: 8pt; font-family: Tahoma">
    			<IMG SRC="/images/head/yourold.gif" WIDTH=384 HEIGHT=25 ALT=""></TD>
    	</TR>
    	<TR>
    		<TD style="font-style: normal; font-variant: normal; font-weight: bold; font-size: 8pt; font-family: Tahoma">
    			<map name="FPMap1">
    			<area target="_self" href="javascript:eqla3soft();" shape="rect" coords="44, 97, 126, 125">
    			<area target="_self" href="javascript:window.external.AddFavorite('http://www.noriny.com/yourold/','احسب عمرك بالثانية')" shape="rect" coords="137, 97, 207, 125">
    			<area href="/vb" shape="rect" coords="218, 99, 287, 125">
    			<area href="http://www.noriny.com/" shape="rect" coords="299, 99, 368, 127">
    			</map>
    			<script>function 
    
    eqla3soft() {window.open('/Send','java','width=440 height=320')}</script>
    			<img border="0" src="/images/head/noriny.com_head_05.gif" width="384" height="131" usemap="#FPMap1" longdesc="الطقس - احوال الطقس - درجة الحرارة - درجة البرودة - الرطوبه - درجة الرطوبة - نسبة الرطوبه - الرياح - نسبة الرياح - الشمس - غائم - امطار - احوال الجو"></TD>
    	</TR>
    </TABLE>
    
    <p>
    <marquee width="736"></marquee>
    <div align="center">
    	<div align="center">
    		<table border="0" width="100%" cellspacing="0" cellpadding="0" height="317">
    			<tr>
    				<td width="21">&nbsp;</td>
    				<td align="center" valign="top">
    									<table width="98%" border="0" cellpadding="0" cellspacing="0" height="141">
    										<tr>
    											<td style="font-family: Tahoma; font-size: 9pt">
    											<img src="/images/00/noriny.com_000.html_01.gif" width="40" height="29" alt=""></td>
    											<td colspan="3" width="84%" background="/images/00/noriny.com_000.html_03.gif" align="center" style="font-family: Tahoma; font-size: 9pt">
    											&nbsp;</td>
    											<td style="font-family: Tahoma; font-size: 9pt">
    											<img src="/images/00/noriny.com_000.html_05.gif" width="41" height="29" alt=""></td>
    										</tr>
    										<tr>
    											<td background="/images/00/noriny.com_000.html_09.gif" width="8%" style="font-family: Tahoma; font-size: 9pt" height="100%">
    											&nbsp;</td>
    											<td colspan="3" bgcolor="#DD7795" align="center" width="84%" style="font-family: Tahoma; font-size: 9pt">
    											
    
    
    		<table border="0" width="100%" cellspacing="0" cellpadding="0" height="317">
    			<tr>
    										<td width="736" align="center" dir="rtl">
    <b><font face="Arial" size="5">أحسب عمرك بالثانية</font></b><p>
    <b>أدخل تاريخ ميلادك بالتاريخ الميلادي فقط</b><p>
    <script language="JavaScript">
    
    <!-- Begin
    function run() {
    with (document.agecalc) {
    dd = parseInt(day.selectedIndex) + 1;
    mm = parseInt(month.selectedIndex) + 1;
    yy = year.value;
    if (yy.length != 4 || isNaN(yy)) {
    document.agecalc.timealive.value = "فضلاً أدخل سنة ميلادك من 4 أرقام";
    document.agecalc.year.select();
    document.agecalc.year.focus();
    return;
       }
    }
    days = new Date();
    gdate = days.getDate();
    gmonth = days.getMonth();
    gyear = days.getYear();
    if (gyear < 2000) gyear += 1900;
    age = gyear - yy;
    if ((mm == (gmonth + 1)) && (dd <= parseInt(gdate))) {
    age = age; 
    } else {
    if (mm <= (gmonth)) {
    age = age;
    } else {
    age = age - 1; 
       }
    }
    if (age == 0)
    age = age;
    document.agecalc.timealive.value = "عمرك الآن " + age+ " سنة . . .\n\n";
    if (mm <= (gmonth + 1))
    age = age - 1;
    if ((mm == (gmonth + 1)) && (dd > parseInt(gdate))) 
    age = age + 1;
    var m;
    var n;
    if (mm == 12) n = 31 - dd;
    if (mm == 11) n = 61 - dd;
    if (mm == 10) n = 92 - dd;
    if (mm == 9) n = 122 - dd;
    if (mm == 8) n = 153 - dd;
    if (mm == 7) n = 184 - dd;
    if (mm == 6) n = 214 - dd;
    if (mm == 5) n = 245 - dd;
    if (mm == 4) n = 275 - dd;
    if (mm == 3) n = 306 - dd;
    if (mm == 2) { n = 334 - dd; if (leapyear(yy)) n++; }
    if (mm == 1) { n = 365 - dd; if (leapyear(yy)) n++; }
    if (gmonth == 1) m = 31;
    if (gmonth == 2) {
    m = 59;
    if (leapyear(gyear)) m++;
    }
    if (gmonth == 3)  { m = 90;  if (leapyear(gyear)) m++; }
    if (gmonth == 4)  { m = 120; if (leapyear(gyear)) m++; }
    if (gmonth == 5)  { m = 151; if (leapyear(gyear)) m++; }
    if (gmonth == 6)  { m = 181; if (leapyear(gyear)) m++; }
    if (gmonth == 7)  { m = 212; if (leapyear(gyear)) m++; }
    if (gmonth == 8)  { m = 243; if (leapyear(gyear)) m++; }
    if (gmonth == 9)  { m = 273; if (leapyear(gyear)) m++; }
    if (gmonth == 10) { m = 304; if (leapyear(gyear)) m++; }
    if (gmonth == 11) { m = 334; if (leapyear(gyear)) m++; }
    if (gmonth == 12) { m = 365; if (leapyear(gyear)) m++; }
    months = age * 12;
    months += 12 - parseInt(mm);
    months += gmonth;
    totdays = (parseInt(age) * 365);
    totdays += age / 4;
    totdays = parseInt(totdays) + gdate + m + n;
    if (gmonth == 1) p = 31 + gdate;
    if (gmonth == 2) {
    p = 59 + gdate;
    if (leapyear(gyear)) m = m+1;
    }
    if (gmonth == 3)  { p = 90 + gdate;  if (leapyear(gyear)) p++; }
    if (gmonth == 4)  { p = 120 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 5)  { p = 151 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 6)  { p = 181 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 7)  { p = 212 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 8)  { p = 243 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 9)  { p = 273 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 10) { p = 304 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 11) { p = 334 + gdate; if (leapyear(gyear)) p++; }
    if (gmonth == 12) { p = 365 + gdate; if (leapyear(gyear)) p++; }
    weeks = (age * 365) + n + p;
    weeks = weeks / 7;
    etcdays = parseFloat(weeks) - parseInt(weeks);
    etcdays = Math.round(etcdays * 7);
    weeks = parseInt(weeks);
    etcdays += parseInt(age / 4);
    if (etcdays > 7)
    weeks += parseInt(etcdays / 7);
    document.agecalc.timealive.value += "     او " + weeks + " اسبوعاً\n";
    document.agecalc.timealive.value += "     او " + months + " شهراً\n";
    document.agecalc.timealive.value += "     او " + totdays + " يوماً\n";
    var time = new Date();
    ghour = time.getHours();
    gmin = time.getMinutes();
    gsec = time.getSeconds(); 
    hour = ((age * 365) + n + p) * 24;
    hour += (parseInt(age / 4) * 24);
    document.agecalc.timealive.value += "     او " + hour + " ساعة\n";
    var min = (hour * 60) + gmin;
    document.agecalc.timealive.value += "     او " + min + " دقيقة\n";
    sec = (min * 60) + gsec;
    document.agecalc.timealive.value += "     او " + sec + " ثانية";
    mm = mm - 1;
    var r;
    if (mm == 0) r = 0;
    if (mm == 1) r = 31;
    if (mm == 2) { r = 59; if (leapyear(gyear)) m++; }
    if (mm == 3)  { r = 90;  if (leapyear(gyear)) r++; }
    if (mm == 4)  { r = 120; if (leapyear(gyear)) r++; }
    if (mm == 5)  { r = 151; if (leapyear(gyear)) r++; }
    if (mm == 6)  { r = 181; if (leapyear(gyear)) r++; }
    if (mm == 7)  { r = 212; if (leapyear(gyear)) r++; }
    if (mm == 8)  { r = 243; if (leapyear(gyear)) r++; }
    if (mm == 9)  { r = 273; if (leapyear(gyear)) r++; }
    if (mm == 10) { r = 304; if (leapyear(gyear)) r++; }
    if (mm == 11) { r = 334; if (leapyear(gyear)) r++; }
    mm = mm + 1;
    r = parseInt(r) + parseInt(dd);
    
    if ((mm >= (gmonth + 1)) && (dd > gdate)) {
    bday = r - m - gdate;
    }
    else {
    if ((leapyear(gyear)) && ((mm > 2) && (dd < 29))) {
    a = 366;
    } else {
    a = 365;
    }
    bday = a + (r - m - gdate);
    }
    nhour = 24 - parseInt(ghour);
    nmin = 60 - parseInt(gmin);
    nsec = 60 - parseInt(gsec);
    while (bday > 366) bday -= 365;
    if (((bday == 366) && (leapyear(gyear)) || ((bday == 365) && (!leapyear(gyear))))) {
    document.agecalc.timealive.value += "\n\اليوم هو عيد ميلادك ,, الف مبروك";
    } else {
    document.agecalc.timealive.value += "\n\عيد ميلادك القادم بعد :\n"
    + bday + " يوم و " + nhour + " ساعة و " + nmin + " دقيقة و " + nsec + " ثانية";
    setTimeout("run()", 1000);
       }
    }
    function leapyear(a) {
    if (((a%4 == 0) && (a%100 != 0)) || (a%400 == 0))
    return true;
    else
    return false;
    }
    //  End -->
                                  </script>
                                            <input onclick="run();" type="button" value="إحسب" name="start" style="color: #000000">
                                            <select size="1" name="month" style="color: #000000; font-family:Tahoma">
                                            <option selected>الشهر</option>
                                            <option>January</option>
                                            <option>February</option>
                                            <option>March</option>
                                            <option>April</option>
                                            <option>May</option>
                                            <option>June</option>
                                            <option>July</option>
                                            <option>August</option>
                                            <option>September</option>
                                            <option>October</option>
                                            <option>November</option>
                                            <option>December</option>
                                            </select>
                                            <select size="1" name="day" style="color: #000000">
                                            <option selected>اليوم</option>
                                            <option>1</option>
                                            <option>2</option>
                                            <option>3</option>
                                            <option>4</option>
                                            <option>5</option>
                                            <option>6</option>
                                            <option>7</option>
                                            <option>8</option>
                                            <option>9</option>
                                            <option>10</option>
                                            <option>11</option>
                                            <option>12</option>
                                            <option>13</option>
                                            <option>14</option>
                                            <option>15</option>
                                            <option>16</option>
                                            <option>17</option>
                                            <optiopleasen>
                                            <option>18</option>
                                            <option>19</option>
                                            <option>20</option>
                                            <option>21</option>
                                            <option>22</option>
                                            <option>23</option>
                                            <option>24</option>
                                            <option>25</option>
                                            <option>26</option>
                                            <option>27</option>
                                            <option>28</option>
                                            <option>29</option>
                                            <option>30</option>
                                            <option>31</option>
                                            </select>
                                            <input maxLength="4" size="6" value="السنة" name="year" style="color: #000000">
    										<form name="agecalc">
                                    <div align="center">
                                      <center>
                                      <table border="0" id="table8" width="45%">
                                        <tr>
                                          <td align="middle" dir="rtl" bgcolor="#DD7795">
                                          <div style="border: 3px double #BD6D7B">
                                            
                                            <font face="Tahoma">
                                            <textarea name="timealive" rows="12" cols="49" style="color: #800000; border: 3px double #DD7795; background-color: #ED8AA7; font-weight:bold; font-size:9pt"></textarea></font>
                                          </div>
                                          <p align="center">
                                          <!-- START HOME FREE FOOTER CODE -->
                                          <!-- START OF WEBTRENDS LIVE TAG -->
                                          <!-- Copyright 1999-2000 WebTrends Corporation -->
                                          <!-- eCommerce Revenue Tracking (patent pending) -->
                                          <!-- Visit us at http://www.webtrendslive.com -->
                                          <script language="JavaScript">
    <!--
    // You may customize the values of the variables below to suit your website.
    // Simply insert your own values between the double-quotes.
    // Here are some examples:
    //   var ORDER= "D2,Business to Consumer,Pocket FM Radio,Audio Products,10,499.99;";
    //   var SERVER= "MyServerName";
    //   var CONTENTGROUP= "ContentGroupOfThisPage";
    
    var ORDER= "";
    var SERVER= "";
    var CONTENTGROUP= "";
    //-->
                                          </script>
                                          <script language="JavaScript">
    <!--
    // Modification of this code is not allowed and will permanently disable your account!
    // SiteName: d1d
    var W="tagver=3&SiteId=47868&Sid=0013-01-1-8-216676-47868&Tz=300&firstwkday=saturday&Edition=personal&Button=10";
    W+="&server="+escape(SERVER);
    W+="&order="+escape(ORDER);
    W+="&Group="+escape(CONTENTGROUP);
    W+="&browserDate="+escape(new Date());
    W+="&title="+escape(document.title);
    W+="&url="+window.document.URL;
    W+="&referrer="+window.document.referrer;
    W+="&appname="+escape(navigator.appName);
    W+="&appversion="+escape(navigator.appVersion);
    W+="&cookieOK="+(navigator.cookieEnabled?"Yes":"No");
    W+="&userLanguage="+(navigator.appName=="Netscape"?navigator.language:navigator.userLanguage);
    W+="&platform="+navigator.platform;
    W+="&bgColor="+escape(document.bgColor);
    W+="&javaOK=Yes";
    if(typeof(screen)=="object")
    {
    W+="&screenResolution="+screen.width+"x"+screen.height;
    W+="&colorDepth="+screen.colorDepth;
    W+="&NSpluginList=";
    for( var i=0; i< navigator.plugins.length; i++)
    W+=escape(navigator.plugins[i].name)+";";
    }
    document.write('<A TARGET="_blank" HREF="http://www.webtrendslive.com/redirect.asp?siteID=47868">');
    document.write('<IMG BORDER="0" WIDTH="0" HEIGHT="0" SRC="http://statse.webtrendslive.com/S0013-01-1-8-216676-47868/button3.asp?'+W+'">');
    document.write('</A>');
    //-->
                                          </script>
                                          <noscript>
                                          جهازك لا يدعم الجافا سكربت</noscript>
                                          <!-- END OF WEBTRENDS LIVE TAG --></p>
    										</td>
    		</tr>
    	</table>
    </div><body>
    											<body>
    
    										<body>
    
    				</td>
    				</tr>
    		</table>
    											<td background="/images/00/noriny.com_000.html_10.gif" width="7%" style="font-family: Tahoma; font-size: 9pt">
    											&nbsp;</td>
    										</tr>
    										<tr>
    											<td style="font-family: Tahoma; font-size: 9pt">
    											<img src="/images/00/noriny.com_000.html_13.gif" width="40" height="28" alt=""></td>
    											<td align="center" width="36%" background="/images/00/noriny.com_000.html_17.gif" style="font-family: Tahoma; font-size: 9pt">
    											&nbsp;</td>
    											<td align="center" width="13%" background="/images/00/noriny.com_000.html_17.gif" style="font-family: Tahoma; font-size: 9pt">
    											<img src="/images/00/noriny.com_000.html_15.gif" width="75" height="28" alt=""></td>
    											<td align="center" width="35%" background="/images/00/noriny.com_000.html_17.gif" style="font-family: Tahoma; font-size: 9pt">
    											&nbsp;</td>
    											<td style="font-family: Tahoma; font-size: 9pt">
    											<img src="/images/00/noriny.com_000.html_19.gif" width="41" height="28" alt=""></td>
    										</tr>
    									</table>
    											<body>
    
    									<body>
    									<body>
    											<body>
    											<body>
    											<body>
    
    				<td width="12" align="center">&nbsp;</td>
    				<td width="101" align="center" valign="top">
    									<table width="162" border="0" cellpadding="0" cellspacing="0">
    										<tr>
    											<td rowspan="2">
    											<img src="/images/noriny_right_01.gif" width="15" height="48" alt=""></td>
    											<td>
    											<img src="/images/noriny_right_02.gif" width="136" height="30" alt=""></td>
    											<td rowspan="2">
    											<img src="/images/noriny_right_03.gif" width="11" height="48" alt=""></td>
    										</tr>
    										<tr>
    											<td height="18" align="center" bgcolor="#EE8BA8">
    											<p align="center">
    											<font color="#B13051">القائمة 
    											الرئيسية</font></p>
    											</td>
    										</tr>
    										<tr>
    											<td background="/images/noriny_right_05.gif" width="100%">
    											&nbsp;</td>
    											<td bgcolor="#EE8BA8" align="center">
    											<table width="136" border="0" cellpadding="0" cellspacing="0">
    												<tr>
    													<td width="36">
    													<img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td>
    													<td background="/images/noriny_right_2_08.gif" align="center">
    													<a target="_blank" href="/vb/">
    													المنتديات</a></td>
    													<td width="19">
    													<img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td>
    												</tr>
    											</table>
    											<table width="136" border="0" cellpadding="0" cellspacing="0">
    												<tr>
    													<td width="36">
    													<img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td>
    													<td background="/images/noriny_right_2_08.gif" align="center">
    													<a target="_blank" href="/prog/">
    													مكتبة البرامج</a></td>
    													<td width="19">
    													<img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td>
    												</tr>
    											</table>
    											<table width="136" border="0" cellpadding="0" cellspacing="0">
    												<tr>
    													<td width="36">
    													<img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td>
    													<td background="/images/noriny_right_2_08.gif" align="center">
    													<a target="_blank" href="/up/">
    													مركز التحميل</a></td>
    													<td width="19">
    													<img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td>
    												</tr>
    											</table>
    											<table width="136" border="0" cellpadding="0" cellspacing="0">
    												<tr>
    													<td width="36">
    													<img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td>
    													<td background="/images/noriny_right_2_08.gif" align="center">
    													<a target="_blank" href="/album/">
    													مكتبة الصور</a></td>
    													<td width="19">
    													<img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td>
    												</tr>
    											</table>
    											<table width="136" border="0" cellpadding="0" cellspacing="0">
    												<tr>
    													<td width="36">
    													<img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td>
    													<td background="/images/noriny_right_2_08.gif" align="center">
    													<a target="_blank" href="/Translate/">
    													ترجمة النصوص</a></td>
    													<td width="19">
    													<img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td>
    												</tr>
    											</table>
    											<table width="136" border="0" cellpadding="0" cellspacing="0">
    												<tr>
    													<td width="36">
    													<img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td>
    													<td background="/images/noriny_right_2_08.gif" align="center">
    													<a target="_blank" href="/trgma/">
    													ترجمة المواقع</a></td>
    													<td width="19">
    													<img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td>
    												</tr>
    											</table>
    											<table width="136" border="0" cellpadding="0" cellspacing="0">
    												<tr>
    													<td width="36">
    													<img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td>
    													<td background="/images/noriny_right_2_08.gif" align="center">
    													<a target="_blank" href="/diwan/">
    													قصائــــــد</a></td>
    													<td width="19">
    													<img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td>
    												</tr>
    											</table>
    											<table width="136" border="0" cellpadding="0" cellspacing="0">
    												<tr>
    													<td width="36">
    													<img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td>
    													<td background="/images/noriny_right_2_08.gif" align="center">
    														<a target="_blank" href="/wheter/">
    														احوال الطقس</a></td>
    													<td width="19">
    													<img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td>
    												</tr>
    											</table>
    											</td>
    											<td background="/images/noriny_right_07.gif" width="7%">
    											&nbsp;</td>
    										</tr>
    										<tr>
    											<td rowspan="2">
    											<img src="/images/noriny_right_08.gif" width="15" height="35" alt=""></td>
    											<td>
    											<img src="/images/noriny_right_09.gif" width="136" height="15" alt=""></td>
    											<td rowspan="2">
    											<img src="/images/noriny_right_10.gif" width="11" height="35" alt=""></td>
    										</tr>
    										<tr>
    											<td>
    											<img src="/images/noriny_right_11.gif" width="136" height="20" alt=""></td>
    										</tr>
    									</table>
    									<p></p>
    									<table width="162" border="0" cellpadding="0" cellspacing="0">
    										<tr>
    											<td rowspan="2">
    											<img src="/images/noriny_right_01.gif" width="15" height="48" alt=""></td>
    											<td>
    											<img src="/images/noriny_right_02.gif" width="136" height="30" alt=""></td>
    											<td rowspan="2">
    											<img src="/images/noriny_right_03.gif" width="11" height="48" alt=""></td>
    										</tr>
    										<tr>
    											<td height="18" align="center" bgcolor="#EE8BA8">
    											<p align="center">
    											<font color="#B13051">خدمات</font></p>
    											</td>
    										</tr>
    										<tr>
    											<td background="/images/noriny_right_05.gif" width="100%">
    											&nbsp;</td>
    											<td bgcolor="#EE8BA8" align="center">
    											<table width="136" border="0" cellpadding="0" cellspacing="0">
    												<tr>
    													<td width="36">
    													<img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td>
    													<td background="/images/noriny_right_2_08.gif" align="center">
    														<a target="_blank" href="/qran/">
    														استمع للقرآن</a></td>
    													<td width="19">
    													<img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td>
    												</tr>
    											</table>
    											<table width="136" border="0" cellpadding="0" cellspacing="0">
    												<tr>
    													<td width="36">
    													<img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td>
    													<td background="/images/noriny_right_2_08.gif" align="center">
    														<a target="_blank" href="/tdwl/">
    														تــــداول</a></td>
    													<td width="19">
    													<img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td>
    												</tr>
    											</table>
    											<table width="136" border="0" cellpadding="0" cellspacing="0">
    												<tr>
    													<td width="36">
    													<img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td>
    													<td background="/images/noriny_right_2_08.gif" align="center">
    														<a target="_blank" href="/tafseer/">
    														تفسير الاحلام</a></td>
    													<td width="19">
    													<img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td>
    												</tr>
    											</table>
    											<table width="136" border="0" cellpadding="0" cellspacing="0">
    												<tr>
    													<td width="36">
    													<img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td>
    													<td background="/images/noriny_right_2_08.gif" align="center">
    														<a target="_blank" href="/names/">
    														اسماء ومعاني</a></td>
    													<td width="19">
    													<img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td>
    												</tr>
    											</table>
    											<table width="136" border="0" cellpadding="0" cellspacing="0">
    												<tr>
    													<td width="36">
    													<img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td>
    													<td background="/images/noriny_right_2_08.gif" align="center">
    														<a target="_blank" href="/ornaments/">
    														زخرفة نصوص</a></td>
    													<td width="19">
    													<img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td>
    												</tr>
    											</table>
    											<table width="136" border="0" cellpadding="0" cellspacing="0">
    												<tr>
    													<td width="36">
    													<img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td>
    													<td background="/images/noriny_right_2_08.gif" align="center">
    													<a target="_blank" href="/typing/">
    													سرعة طباعتك</a></td>
    													<td width="19">
    													<img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td>
    												</tr>
    											</table>
    											<table width="136" border="0" cellpadding="0" cellspacing="0">
    												<tr>
    													<td width="36">
    													<img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td>
    													<td background="/images/noriny_right_2_08.gif" align="center">
    													<a target="_blank" href="/DSL/">
    													سرعة اتصالك</a></td>
    													<td width="19">
    													<img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td>
    												</tr>
    											</table>
    											<table width="136" border="0" cellpadding="0" cellspacing="0">
    												<tr>
    													<td width="36">
    													<img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td>
    													<td background="/images/noriny_right_2_08.gif" align="center">
    														<a target="_blank" href="/tell/">
    														اخبــر صديقــك</a></td>
    													<td width="19">
    													<img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td>
    												</tr>
    											</table>
    											</td>
    											<td background="/images/noriny_right_07.gif" width="7%">
    											&nbsp;</td>
    										</tr>
    										<tr>
    											<td rowspan="2">
    											<img src="/images/noriny_right_08.gif" width="15" height="35" alt=""></td>
    											<td>
    											<img src="/images/noriny_right_09.gif" width="136" height="15" alt=""></td>
    											<td rowspan="2">
    											<img src="/images/noriny_right_10.gif" width="11" height="35" alt=""></td>
    										</tr>
    										<tr>
    											<td>
    											<img src="/images/noriny_right_11.gif" width="136" height="20" alt=""></td>
    										</tr>
    									</table>
    									<p></p>
    									<table width="162" border="0" cellpadding="0" cellspacing="0">
    										<tr>
    											<td rowspan="2">
    											<img src="/images/noriny_right_01.gif" width="15" height="48" alt=""></td>
    											<td>
    											<img src="/images/noriny_right_02.gif" width="136" height="30" alt=""></td>
    											<td rowspan="2">
    											<img src="/images/noriny_right_03.gif" width="11" height="48" alt=""></td>
    										</tr>
    										<tr>
    											<td height="18" align="center" bgcolor="#EE8BA8">
    											<p align="center">
    											<font color="#B13051">اقسام 
    											المنتديات</font></p>
    											</td>
    										</tr>
    										<tr>
    											<td background="/images/noriny_right_05.gif" width="100%">
    											&nbsp;</td>
    											<td bgcolor="#EE8BA8" align="center">
    											<marquee onmouseover="this.stop()" onmouseout="this.start()" scrollamount="2" scrolldelay="0" direction="up" height="230" width="134"><table border="0" width="15%" cellspacing="0" cellpadding="0" height="213"><tr><td align="center"><table width="136" border="0" cellpadding="0" cellspacing="0"><tr><td width="36" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma"><img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td><td background="/images/noriny_right_2_08.gif" align="center" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma">المنتيدات العامة</td><td width="19" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma"><img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td></tr></table></td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=3"><strong style="font-weight: 400">المنتدى العام</strong></a><b> </b></td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=32"><strong style="font-weight: 400">دين ودنيا</strong></a></td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=38"><strong style="font-weight: 400">مناقشـة وحـوار</strong></a> </td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=63"><strong style="font-weight: 400">الجريمه و الإثاره</strong></a> </td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=23"><strong style="font-weight: 400">ملتقى الأصدقاء </strong></a></td></tr><tr><td align="center">&nbsp;</td></tr><tr><td align="center"><table width="136" border="0" cellpadding="0" cellspacing="0"><tr><td width="36" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma"><img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td><td background="/images/noriny_right_2_08.gif" align="center" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma">عالم الاسرة</td><td width="19" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma"><img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td></tr></table></td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=11"><strong style="font-weight: 400">الجمال والاناقة</strong></a></td></tr><tr><td align="center"><strong style="font-weight: 400"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=66">الحياة الزوجية</a></strong> </td></tr><tr><td align="center"><strong style="font-weight: 400"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=22">الصحة والأسرة</a></strong> </td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=40"><strong style="font-weight: 400">المطبخ الشامل</strong></a></td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=33"><strong style="font-weight: 400">الديكور و تصاميم</strong></a></td></tr><tr><td align="center">&nbsp;</td></tr><tr><td align="center"><table width="136" border="0" cellpadding="0" cellspacing="0"><tr><td width="36" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma"><img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td><td background="/images/noriny_right_2_08.gif" align="center" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma">الترفيــة</td><td width="19" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma"><img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td></tr></table></td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=5"><strong style="font-weight: 400">التسليـة والفرفشة</strong></a> </td></tr><tr><td align="center"><strong style="font-weight: 400"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=56">المسابقات و الألعاب</a></strong> </td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=42"><strong style="font-weight: 400">الالغاز المعقدة</strong></a> </td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=6"><strong style="font-weight: 400">صور وخلفيات</strong></a> </td></tr><tr><td align="center">&nbsp;</td></tr><tr><td align="center"><table width="136" border="0" cellpadding="0" cellspacing="0"><tr><td width="36" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma"><img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td><td background="/images/noriny_right_2_08.gif" align="center" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma">المنتدى الأدبي</td><td width="19" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma"><img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td></tr></table></td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=7"><strong style="font-weight: 400">همس القوافي</strong></a></td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=48"><strong style="font-weight: 400">عذب الكلام</strong></a> </td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=26"><strong style="font-weight: 400">القصص والروايات</strong></a></td></tr><tr><td align="center">&nbsp;</td></tr><tr><td align="center"><table width="136" border="0" cellpadding="0" cellspacing="0"><tr><td width="36" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma"><img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td><td background="/images/noriny_right_2_08.gif" align="center" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma">المنتديات التقنية</td><td width="19" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma"><img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td></tr></table></td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=4"><strong style="font-weight: 400">البرامج والانترنت</strong></a></td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=31"><strong style="font-weight: 400">الحماية والاختراق</strong></a> </td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=55"><strong style="font-weight: 400">الالعاب الإلكترونية</strong></a></td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=12"><strong style="font-weight: 400">التصميـم والابـداع</strong></a> </td></tr><tr><td align="center">&nbsp;</td></tr><tr><td align="center"><table width="136" border="0" cellpadding="0" cellspacing="0"><tr><td width="36" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma"><img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td><td background="/images/noriny_right_2_08.gif" align="center" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma">قسم الجوال</td><td width="19" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma"><img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td></tr></table></td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=57"><strong style="font-weight: 400">الجـوال العـام</strong></a> </td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=46"><strong style="font-weight: 400">مرئيات الجوال</strong></a> </td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=45"><strong style="font-weight: 400">برامج الجوال</strong></a> </td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=47"><strong style="font-weight: 400">مسجات الجوال</strong></a> </td></tr><tr><td align="center">&nbsp;</td></tr><tr><td align="center"><table width="136" border="0" cellpadding="0" cellspacing="0"><tr><td width="36" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma"><img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td><td background="/images/noriny_right_2_08.gif" align="center" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma">الفن والسينما</td><td width="19" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma"><img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td></tr></table></td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=65"><strong style="font-weight: 400">الفن والفنانين</strong></a> </td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=60"><strong style="font-weight: 400">الأفلام الأجنبية</strong></a> </td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=61"><strong style="font-weight: 400">الأفلام العربية</strong></a> </td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=62"><strong style="font-weight: 400">الأنمي والكارتون</strong></a> </td></tr><tr><td align="center">&nbsp;</td></tr><tr><td align="center"><table width="136" border="0" cellpadding="0" cellspacing="0"><tr><td width="36" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma"><img src="/images/noriny_right_2_06.gif" width="36" height="29" alt=""></td><td background="/images/noriny_right_2_08.gif" align="center" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma">عالم الرياضة</td><td width="19" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: Tahoma"><img src="/images/noriny_right_2_10.gif" width="19" height="29" alt=""></td></tr></table></td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=49"><strong style="font-weight: 400">السعودية و العربية</strong></a> </td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=50"><strong style="font-weight: 400">الريـاضـة العــلمـية</strong></a> </td></tr><tr><td align="center"><a style="text-decoration: none; color" href="/vb/forumdisplay.php?f=10"><strong style="font-weight: 400">السيارات والدراجات </strong></a></td></tr></table></div></marquee></td>
    										<td background="/images/noriny_right_07.gif" width="7%">
    										&nbsp;</td>
    									</tr>
    									<tr>
    										<td rowspan="2">
    										<img src="/images/noriny_right_08.gif" width="15" height="35" alt=""></td>
    										<td>
    										<img src="/images/noriny_right_09.gif" width="136" height="15" alt=""></td>
    										<td rowspan="2">
    										<img src="/images/noriny_right_10.gif" width="11" height="35" alt=""></td>
    									</tr>
    									<tr>
    										<td>
    										<img src="/images/noriny_right_11.gif" width="136" height="20" alt=""></td>
    									</tr>
    								</table>
    									</td>
    				<td width="23">&nbsp;</td>
    			</tr>
    		</table>
    	</div>
    	<p>
    
    
    											<span style="font-weight: 400">
    
    
    											<body>
    
    				&gt;&gt; </span> 
    				<a style="text-decoration: none; font-weight:400" href="/">عودة 
    				للصفحة الرئيسية</a><span style="font-weight: 400"> &lt;&lt;</body></span><p>
    
    
    											<body>
    
    
    </body>
    					<div align="center">
    						<table border="0" 
    
    width="100%" cellspacing="0" cellpadding="0" background="/images/foot/noriny.com_002_04.gif">
    							<tr>
    								<td 
    
    align="center" dir="ltr">
    								<table 
    
    width="598" border="0" cellpadding="0" cellspacing="0">
    									
    
    <tr>
    									
    
    	<td align="center">
    									
    
    			<a title="جميع الحقوق محفوظه لشبكة نور عيني" href="http://www.noriny.com/">
    			<img border="0" src="/images/foot/noriny.com_002_01.gif" width="590" height="65"></a></td>
    									
    
    </tr>
    								
    
    </table>
    							</td>
    							</tr>
    						</table>
    					</div>
    				<body>
    
    				</div>
    </div>
    </td>
    <td style="FONT-WEIGHT: normal; 
    
    FONT-SIZE: 12px; FONT-STYLE: normal; FONT-FAMILY: Tahoma; FONT-VARIANT: 
    
    normal" background="/images/bg_right.gif" width="18">
    <img src="/images/bg_right.gif" border="0"></td>
    <td style="FONT-WEIGHT: normal; 
    
    FONT-SIZE: 12px; FONT-STYLE: normal; FONT-FAMILY: Tahoma; FONT-VARIANT: 
    
    normal" width="50%" align="center">&nbsp;</td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    </div>
    
    
    </body>
    </html>






    __________________
    ليث الخليلي .. موقعي القديم ( خلفيات شاشة - تحويل - الغاز - تفسير احلام - الشرس ).

  8. #8
    عضو فعال
    تاريخ التسجيل
    May 2007
    المشاركات
    1,227


    عبد الله الزايدي
    حياك الله اخوي بأي وقت والاخ سلطان الله يوفقه ضبطها لك بالهجري لكن نفس النتيجة .

    ALRheeB.Net
    مشكور اخوي وفقك الله لما يرضاه و الحمد لله نفع الكود معي مشكور

    الحق يعلومشكور صدقت الحق يعلو و شكرا ً لإضافتك الجميلة

    alshares.com
    اخي الشرس اذا كنت تقصدني بـكلمة [اخي بصراحة عيب تسأل هكذا سؤال] انا لم أسئل سؤال انما طلبت الكود لان محاولتي لاستحراجه باتت مستحيلة معي .

    ومشكور على إيضاحك .

    شاكرين لكم حسن تعاونكم معي ومع بقية الاعضاء.

    اخوكم | Abu Fahd





    __________________
    حسناً، جرّب الحياة.
    نصائح مهمة: لتفادي سرقة الدومينات.

    للمراسلة إضغط هنا فقط .

  9. #9
    عضو فعال
    تاريخ التسجيل
    Nov 2005
    المشاركات
    1,390


    اقتباس المشاركة الأصلية كتبت بواسطة alshares.com
    اخي بصراحة عيب تسأل هكذا سؤال

    هذا السورس للصفحة بكاملها

    لاحظ بداية الكود للجافا سكربت ونهايته ويكون هو كذلك

    وان لم تكن تعلم ذلك نزل الاكسبلورر 7 واضغط بيج ثم فيو سورس

    وسلامتك ..

    [/CODE]
    بدون تنزيل الإكسبلور 7
    حتى في 6 كليك يمين تم فيو سورس





    __________________
    اللهم أنت ربي لا إله الا أنت،
    خلقتني وأنا عبدك وأنا على عهدك ووعدك ما استطعت،
    أعوذ بك من شر ما صنعت،
    أبوء لك بنعمتك عليّ وأبوء بذنبي،
    فاغفر لي، فإنه لا يغفر الذنوب إلا أنت

  10. #10
    عضو نشيط جدا
    تاريخ التسجيل
    Dec 2004
    المشاركات
    411


    اقتباس المشاركة الأصلية كتبت بواسطة alshares.com
    اخي بصراحة عيب تسأل هكذا سؤال
    حتى ولو سأل الأخ أبو فهد، فلا عيب في ذلك... إسأل على راحتك





    __________________
    أخوكم/ ديزاين 360
    أشهد أن لا إله إلا الله وحده لا شريك له، وأشهد أن محمد عبده ورسوله

  11. #11
    عضو نشيط جدا
    تاريخ التسجيل
    May 2007
    المشاركات
    392


    إخوانى شكرا على مجهوداتكم ولكنى استخدم الفايرفوكس وحينما جربته وأدخلت التاريخ لم يحسب شئ
    فهل هناك حل لذلك





    __________________
    شكرا سوالف سوفت

    WwW.GeoScience.Me

  12. #12
    عضو فعال
    تاريخ التسجيل
    May 2007
    المشاركات
    1,227



    و حبيت اسئلكم لو احد عنده الكود او السكربت ياليت لا يبخل علينا وان شاء الله نفيده بالمستقبل ..

    اخوي design360 تسلم و الله لكن انا إلى الان متعقد من عيب تسأل عن شي مثل كذا > لا عليك ..
    ومشكور وترى موب كل انسان يخلق عالم و متعلم لازم الواحد يتعلم من 0 حتى ما شاء الله ..

    -------------------------------------------------------------------

    اخوي way2future انا مستغرب هذا الفايرفوكس مادري ليه كذا عنصري غير كل المتصفحات ..
    السبب و الله اعلم : انه المتصفح يقوم بتعطيل جميع الاكواد الي مالها داعي و البطئ إداة التصفح ولاحظ ان الاكسبلور بطئ لانه ما يقوم بتعطيل الاكواد الزائدة عن الزوم .

    و ان شاء الله الاخوان ما بيقصرون معك في تعديل الكود إلى الافضل .

    اخوكم | Abu Fahd





    __________________
    حسناً، جرّب الحياة.
    نصائح مهمة: لتفادي سرقة الدومينات.

    للمراسلة إضغط هنا فقط .





ضوابط المشاركة

  • لا تستطيع إضافة مواضيع جديدة
  • لا تستطيع الرد على المواضيع
  • لا تستطيع إرفاق ملفات
  • لا تستطيع تعديل مشاركاتك
  •  

أضف موقعك هنا| اخبار السيارات | حراج | شقق للايجار في الكويت | بيوت للبيع في الكويت | دليل الكويت العقاري | مقروء | شركة كشف تسربات المياه | شركة عزل اسطح بالرياض | عزل فوم بالرياض| عزل اسطح بالرياض | كشف تسربات المياة بالرياض | شركة عزل اسطح بالرياض