الهاشمي
هل تريد التفاعل مع هذه المساهمة؟ كل ما عليك هو إنشاء حساب جديد ببضع خطوات أو تسجيل الدخول للمتابعة.
المواضيع الأخيرة
» يجب القراء قبل المشاركه....؟؟؟ضروري
لمن يرغب في الاستفسار Empty2008-08-07, 2:13 am من طرف المستشار

» لمن يرغب في الاستفسار
لمن يرغب في الاستفسار Empty2008-08-07, 1:09 am من طرف المستشار

دخول

لقد نسيت كلمة السر

برامج تهمك
<marquee direction="Up" scrollAmount="2"><FONT size="4" COLOR="Blue"> <DIV align=center><TABLE cellSpacing=0 cellPadding=0 width="100%" border=0><TBODY><TR><TD> <DIV align=center> </DIV></TD></TR></TBODY></TABLE></DIV> <DIV align=center><A href="http://www.winzip.com/downwz.htm"><IMG src="https://i.servimg.com/u/f22/11/41/89/58/winzip10.gif"></A><BR> <BR><A href="http://www.win-rar.com/download.html"><IMG src="https://i.servimg.com/u/f22/11/41/89/58/rar10.gif"></A><BR> <BR><A href="http://get.live.com/messenger/overview"><IMG src="https://i.servimg.com/u/f22/11/41/89/58/messen10.gif"></A><BR> <BR><A href="http://messenger.yahoo.com/download.php"><IMG src="https://i.servimg.com/u/f22/11/41/89/58/yahoo10.gif"></A><BR> <BR><A href="http://www.java.com/en/download/index.jsp"><IMG src="https://i.servimg.com/u/f22/11/41/89/58/javv110.gif"></A><BR>  <BR><A href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"><IMG src="https://i.servimg.com/u/f22/11/41/89/58/flash10.gif"></A><BR> <BR><A href="http://www.microsoft.com/middleeast/arabic/windows/downloads/ie/getitnow.mspx"><IMG src="https://i.servimg.com/u/f22/11/41/89/58/exp10.gif"></A><BR> <BR><A href="http://download.microsoft.com/download/2/E/E/2EE0BE6B-3108-4C9E-BA1C-8B9809B29241/MP10Setup.exe"><IMG src="https://i.servimg.com/u/f22/11/41/89/58/midd110.gif"></A><BR> <BR><A href="http://www.realplayer.com/"><IMG src="https://i.servimg.com/u/f22/11/41/89/58/real110.gif"></A><BR> <BR><A href="http://www.winamp.com/player"><IMG src="https://i.servimg.com/u/f22/11/41/89/58/winn110.gif"></A><BR> </DIV> <DIV align=center><BR> </DIV></FONT></marquee>
سحابة الكلمات الدلالية

تسجيل صفحاتك المفضلة في مواقع خارجية

تسجيل صفحاتك المفضلة في مواقع خارجية reddit      

قم بحفض و مشاطرة الرابط <a href="https://atallh.ahlamontada.com/">الهاشمي</a> على موقع حفض الصفحات

قم بحفض و مشاطرة الرابط الهاشمي على موقع حفض الصفحات

تصويت
<embed src="http://img209.exs.cx/img209/9307/clock2l6zv.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="100%"></embed>
<SCRIPT language="JavaScript"> function bmiCalc(form) { var weight = Number(form.wt.value); var height = Number(form.ht.value); if (!checkNum(weight,"WEIGHT")) { form.wt.select(); form.wt.focus(); return false } if (!checkNum(height,"HEIGHT")) { form.ht.select(); form.ht.focus(); return false } if (form.wu.selectedIndex == 0) { // What units for weight? // 0 = lbs // 1 = kg weight = weight * 0.45359237; // Convert wt (lbs to kg) } if (form.sex[1].checked) { // Is the patient female? // 0 = male // 1 = female leanConvert = 148; idealConvert = 45.5; // conversion factors for women } else { leanConvert = 128; idealConvert = 50; // conversion factors for men } if (form.hu.selectedIndex == 0) { // if height units are "inches" heightInches = height; heightMeters = height * 2.54 / 100; } if (form.hu.selectedIndex == 1) { // if height units are "cm" heightInches = height / 2.54; heightMeters = height / 100; } if (form.hu.selectedIndex == 2) { // if height units are "meters" heightInches = height * 100 / 2.54; heightMeters = height; } var bsa = 0.20247 * Math.pow(heightMeters,0.725) * Math.pow(weight,0.425); var leanKg = 1.1 * weight - leanConvert * (Math.pow(weight,2) / Math.pow((100 * heightMeters),2)); var leanLbs = leanKg * 2.2046226; var idealKg = idealConvert + 2.3 * (heightInches - 60); var idealLbs = idealKg * 2.2046226; var bmi = weight / Math.pow(heightMeters,2); bsa = rounding(bsa,2); leanKg = Math.round(leanKg); leanLbs = Math.round(leanLbs); idealKg = Math.round(idealKg); idealLbs = Math.round(idealLbs); bmi = rounding(bmi,1); if (bmi < 18.5) { var interp = " اقل من المعدل الطبيعي" } else { if (bmi < 25.0) { var interp = "مبروك بحدود المعدل الطبيعي" } else { if (bmi < 30.0) { var interp = "اعلى من المعدل الطبيعي" } else { var interp = "وزنك زائد يجب عليك الحرص في انقاصه" } } } form.bsa.value = bsa; form.leanKg.value = leanKg; form.leanLbs.value = leanLbs; form.idealKg.value = idealKg; form.idealLbs.value = idealLbs; form.bmi.value = bmi; form.interp.value = interp; return true}function checkNum(val,text) { if ((val == null) || (isNaN(val)) || (val == "") || (val < 0)) { alert("رجاء ادخال ارقام في حقلي الطول و الوزن"); return false } return true;}function rounding(number,decimal) { multiplier = Math.pow(10,decimal); number = Math.round(number * multiplier) / multiplier; return number}// BY WWW.STRA28.COM</SCRIPT>
<SCRIPT language=JavaScript><!-- var g=new Date(); g=g.getTime()%1000; document.writeln('<iframe width=60% height=35 scrolling=no marginwidth=0 marginheight=0 frameborder=0 src=http://faisal1.com/services/wq/wqh.php>'); // --></SCRIPT> <NOSCRIPT><!--webbot bot="HTMLMarkup" startspan --><IFRAME marginWidth=0 marginHeight=0 frameBorder=0 width=0 scrolling=no height=0><!--webbot bot="HTMLMarkup" endspan --><!--webbot bot="HTMLMarkup" startspan --></IFRAME></IFRAME><!--webbot bot="HTMLMarkup" endspan --></NOSCRIPT>
<!-- Activate Cloaking Device var onHours = " "; var onMinutes = " "; var onSeconds = " "; var offHours = 0; var offMinutes = 0; var offSeconds = 0; var logSeconds = 0; var logMinutes = 0; var logHours = 0; var OnTimeValue = " "; var OffTimeValue = " "; var PageTimeValue = " "; // Back to previous page. function WinOpen() { getLogoffTime(); window.location="js-timet.htm" window.location="js-timet.htm" // double call for Mac users?? } // Loads HTML page to full window for View Source. function WinOpen1() { alert('View/Document Source from menu bar..., then close new window to return to this page. The animation of the radio buttons on the JavaScript index will be dead upon return. Reload the JavaScript page to get them going again. '); window.open("js-timer.htm","DisplayWindow","menubar=yes,scrollbars=yes"); } // Captures logon time. function getLogonTime() { var now = new Date(); // Used to display logon time. var ampm = (now.getHours() >= 12) ? " مساءً" : " صباحاً" var Hours = now.getHours(); Hours = ((Hours > 12) ? Hours - 12 : Hours); var Minutes = ((now.getMinutes() < 10) ? ":0" : ":") + now.getMinutes(); var Seconds = ((now.getSeconds() < 10) ? ":0" : ":") + now.getSeconds(); // String to display log-on time. OnTimeValue =(" " + Hours + Minutes + Seconds + " " + ampm); // Capture logon time for use in timer(). onHours = now.getHours(); onMinutes = now.getMinutes(); onSeconds = now.getSeconds(); } function getLogoffTime() { var now = new Date(); // Used to display logoff time. var ampm = (now.getHours() >= 12) ? " مساءً" : " صباحاً" var Hours = now.getHours(); Hours = ((Hours > 12) ? Hours - 12 : Hours); var Minutes = ((now.getMinutes() < 10) ? ":0" : ":") + now.getMinutes(); var Seconds = ((now.getSeconds() < 10) ? ":0" : ":") + now.getSeconds(); // String to display log-off time. OffTimeValue =(" " + Hours + Minutes + Seconds + " " + ampm); // Capture logoff time for use in timer(). offHours = now.getHours(); offMinutes = now.getMinutes(); offSeconds = now.getSeconds(); timer(); } // Compute difference between logoff time and logon time. function timer() { if (offSeconds >= onSeconds) { logSeconds = offSeconds - onSeconds; } else { offMinutes -= 1; logSeconds = (offSeconds + 60) - onSeconds; } if (offMinutes >= onMinutes) { logMinutes = offMinutes - onMinutes; } else { offHours -= 1; logMinutes = (offMinutes + 60) - onMinutes; } logHours = offHours - onHours; // Used to display time on page. logHours = ((logHours < 10) ? "0" : ":") + logHours; logMinutes = ((logMinutes < 10) ? ":0" : ":") + logMinutes; logSeconds = ((logSeconds < 10) ? ":0" : ":") +logSeconds; // String to display time on page. PageTimeValue =(" " + logHours + logMinutes + logSeconds); displayTimes(); } function displayTimes() { alert("nوقت دخول الصفحة : " +OnTimeValue+"nnوقت الخروج : "+OffTimeValue+"nnالوقت الذي قضيته بالصفحة هو : " + PageTimeValue); } // Deactivate Cloaking --> </SCRIPT>

لمن يرغب في الاستفسار

اذهب الى الأسفل

لمن يرغب في الاستفسار Empty لمن يرغب في الاستفسار

مُساهمة من طرف المستشار 2008-08-07, 1:09 am

مرحبا بالاعضاء الطيبين
اود ان انشد عليكم بان من يواجه صعوبه في تصفح المنتدى او يريد ان يوجه سوال
فاليبعث رساله الى المدير
المستشار
المستشار
الهاشمي
الهاشمي

ذكر
عدد الرسائل : 137
العمر : 34
المزاج : مسلي
مهنه : طالب
الاوسمه : لمن يرغب في الاستفسار Member
sms : <!--- MySMS By AlBa7ar Semauae.com --><form method="POST" action="--WEBBOT-SELF--"> <!--webbot bot="SaveResults" u-file="fpweb:///_private/form_results.csv" s-format="TEXT/CSV" s-label-fields="TRUE" --><fieldset style="padding: 2; width:208; height:104"> <legend><b>My SMS</b></legend> <marquee onmouseover="this.stop()" onmouseout="this.start()" direction="up" scrolldelay="2" scrollamount="1" style="text-align: center; font-family: Tahoma; " height="78">$post[field5]</marquee></fieldset></form><!--- MySMS By AlBa7ar Semauae.com -->
تاريخ التسجيل : 02/08/2008

https://atallh.ahlamontada.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

الرجوع الى أعلى الصفحة


 
صلاحيات هذا المنتدى:
لاتستطيع الرد على المواضيع في هذا المنتدى