المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : المكتبة الكاملة لاسكريبتات المواقع


زيزو اهلاوي
30-05-2008, 11:53 PM
بسم الله الرحمن الرحيم





المكتبه الكامله

ملحوظة: يمكنك تعديل او تغيير الرسالات فى اى من هذة الاسكريبتات حسب احتياجاتك.



الانذارات:

تذكرك باضافة الصفحة للمفضلة


<BODY onUnload="window.alert('Enter reminder text here')">

تخبرك بتعداد سكان الصين عند زيارتك للصفحة

<script language="JavaScript">
var hey= new Date()
var yr= hey.getYear()
var mo= hey.getMonth()
var syr= 92
var sco= 1169619601
var per= 110
var fig92= sco/100
var fig92a= fig92*110
var fig93= fig92a/100
var fig93a= fig93*110
var fig94= fig93a/100
var fig94a= fig94*110
var fig95= fig94a/100
var fig95a= fig95*110
var fig96= fig95a/100
var fig96a= fig96*110
var fig97= fig96a/100
var fig97a= fig97*110
var fig98= fig97a/100
var fig98a= fig98*110
var dif= fig97a-sco
alert("CHINA'S CURRENT POPULATION [1997] is:\n"+fig97a+
" \n\ This is an increase of: "+dif+" since 1992 \n\ This does not include Hong Kong.");
alert("CHINA'S PROJECTED POPULATION FOR 1998 is:\n"+fig98a+
" \n\ This is an increase of: "+dif+" since 1992 \n\ This does not include Hong Kong.");
</script>

لتاكيد رغبتك فى دخول الصفحة او لا

<SCRIPT LANGUAGE="JavaScript">
function Info()
{if (!confirm("You are entering another Javascript page. Do you want to continue?"))
history.go(0);return " "}
document.writeln(Info())
</SCRIPT>

رسالة ترحيب

<BODY onLoad="alert('Enter The Message Here')">

سلسلة من الانذارات تنبئك بتدمير المتصفح
<body onLoad="messageBox(' Your browser crashes on 5! ',' 4! ',' 3! ',' 2! ',' Just Kidding! ')">

تخبرك ان كان لديك جافا او لا
<BODY onLoad="checkjava()">
<SCRIPT>
function checkjava()
{
if (navigator.javaEnabled() < 1){
alert("Please enable Java in the options menu.\nYou'll need it for these pages!");
}
if (navigator.javaEnabled() == 1){
alert("You're Java enabled. Keep surfing!");
}
}
</SCRIPT>
رسالة ترحيب بزر

<FORM>
<input type=button name=sillyprompt value="Greeting"
onClick= "alert('Hello World!!')"> Press for a greeting<br>
</FORM>

رسالة عند ترك الصفحة

<BODY onUnload="alert('Censors show you are attempting to leave this page! All you did was try to leave the page, right? Well JavaScript alerts can be triggered by loading and unloading Web pages, as well as for many mouse actions!')">

اصنع الانذار بنفسك

<FORM>
<TEXTAREA NAME="text" ROWS="3" COLS="30"></textarea><p>
<INPUT TYPE="button" VALUE="Alert Test!"
onClick="alert(this.form.text.value)"> <INPUT TYPE="reset" NAME="cancel" VALUE="Reset">
</FORM>

اضغط على الزر لعرض اكثر من انذار

<FORM><INPUT TYPE="button" Value=" CLICK HERE "
onClick="alert('Don\'t be fooled. This is different.');alert('See, you can have more than one alert in a row.');alert('You can have as many as you want!')")>
</FORM>

انذار عند المرور بالماوس

<FORM>
Don't point your mouse <a href="" onmouseover="alert('Oh no! What have you done?!')">here</a> or <a href="" onmouseover="alert('I thought I said NO!')">here</a> or <a href="" onmouseover="alert('If your mom told you not to do something, would you still do it??')">here</a>.
</FORM>

فتح صفحة مع اظهار رسالة عند دخول الموقع

<script language=javascript1.1>
location.reload(http://www.page.com)
</script>
<script language=javascript>
history.go(0)
alert("Your Message here")
</script>

رسالة تظهر فى وقت معين بعد دخولك الصفحة (30 ثانية مثلا)

</center><SCRIPT NAME="Alert Script" AUTHOR="Evan Zaker" LANGUAGE="JavaScript">

set = null
var timerID = null
var timerRunning = false
function stopclock() {
if(timerRunning)
clearTimeout(timerID)
timerRunning = false
}
function startclock() {
stopclock()
showtime()
}
function showtime(){
var now = new Date()
var hours = now.getHours()
var minutes = now.getMinutes()
var seconds = now.getSeconds()
var timeValue = "" + ((hours > 12) ? hours - 12 : hours)
timeValue += ((minutes < 10) ? ":0" : ":") + minutes
timeValue += ((seconds < 10) ? ":0" : ":") + seconds
timeValue += (hours >= 12) ? " PM" : " AM"
document.alert.time.value = timeValue
if(timeValue == set) {alert(message);}
timerID = setTimeout("showtime()",1000)
timerRunning = true
}
function setalert() {
set = prompt("Setting Alert\nPlease set time in 0:00:00 ?M format.\nExample 11:01:00 AM","");
document.alert.set.value = set
setmess()
}
function setmess() {
message = prompt("Setting Alert\nPlease type in the message you want Alert to alert your with.","");
document.alert.message.value = message
}
function about() {
alert("Alert Version 1.5\nBy Evan Zaker\n (ECZaker@AOL.com) [http://members.aol.com/eczaker]");
}
function quit() {
if(confirm("Quitting Alert...")) {
about()
close()
}
}
</SCRIPT>
<CENTER>
<FORM NAME="alert">
<TABLE>
<TR><TD>Current Time - </TD><TD><INPUT TYPE=TEXT NAME="time" VALUE="00:00 ?M" SIZE=10></TD></TR>
<TR><TD>Set Time - </TD><TD><INPUT TYPE=TEXT NAME="set" VALUE="00:00 ?M" SIZE=10></TD></TR>
<TR><TD>Alert Message - </TD><TD><INPUT TYPE=TEXT NAME="message" VALUE="None" SIZE=30></TD></TR>
<TR><TD><INPUT TYPE=BUTTON VALUE="Set Time" ONCLICK="setalert()"></TD><TD><INPUT TYPE=BUTTON VALUE="Set Message" ONCLICK="setmess()"></TD></TR>
<TR><TD><INPUT TYPE=BUTTON VALUE="About" ONCLICK="about()"></TD><TD><INPUT TYPE=BUTTON VALUE="Quit" ONCLICK="quit()"></TD></TR>
</TABLE>
</FORM>

السكريبت يخبرك بقالك كم في الصفحة و يظهر رسالة عند ضغطك على الزر ليقولانت دخلت الصفحة امتة

<SCRIPT>
<!-- 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) ? " P.M." : " A.M."
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) ? " P.M." : " A.M."
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("\nLOG ON TIME : " +OnTimeValue+"\n\nLOG OFF TIME : "+OffTimeValue+"\n\nTIME ON PAGE : " + PageTimeValue);
}
// Deactivate Cloaking -->
</SCRIPT>
</HEAD>
<BODY onLoad="getLogonTime()";>
<CENTER><STRONG><EM>
<FORM>
<INPUT TYPE="button" value="Time on Page" onClick="getLogoffTime()">
</FORM>
</CENTER>
<BR>
</FORM>
</CENTER>

يخبرك قعدت كم فى الصفحة عند الخروج

<SCRIPT>
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();
}
// Loads HTML page to full window for View Source.
function WinOpen1()
{
alert('\nPage will load to full screen.\n\nUse View/Document Source from menu bar to view source.\n\nClose new window to return to this page. ');
window.open("js-timer.htm","DisplayWindow","menubar=yes,scrollbars=yes");
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) ? " P.M." : " A.M."
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) ? " P.M." : " A.M."
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("Thank you for visiting my HomePage\ \nLOG ON TIME : " +OnTimeValue+"\n\nLOG OFF TIME : "+OffTimeValue+"\n\nTIME ON PAGE : " + PageTimeValue);
}
</SCRIPT>
</head>
<body onUnLoad="WinOpen()" onLoad="getLogonTime()";>

الصوت:
ميدى بلاير مثل السى دى بلاير

<HTML>
<HEAD>
<TITLE>Cd Midi Player</TITLE>
</HEAD>
<Script Language="JavaScript">
<!-- Hiding
/* Script by Lefteris Haritou :
http://www.geocities.com/~lef
Please keep the above credit.
No copyrights but be fair.
*/
song = new Array()
var x = 0
song[1] = "Songname # 1"
song[2] = "Songname # 2"
song[3] = "Songname # 3"
song[4] = "Songname # 4"
song[5] = "Songname # 5"
song[6] = "Songname # 6"
function prev(){
if (x>1)
{ x--
document.midi.typein.value=song [x]
}
}
function next(){
var max= song.length-1
if (x<max)
{ x++
document.midi.typein.value=song [x]
}
}
function go(){
if (x != 0){
location.href='song'+x+'.mid'
}
}
function start(){
x=1
document.midi.typein.value=song [x]
}
function end(){
x=song.length-1
document.midi.typein.value=song [x]
}
function cls(){
document.midi.typein.value="Select Midi Song"
}
// Done Hiding -->
</Script>
<BODY Bgcolor="#ffffff" onload="cls()">
<Center>
<FORM Name="midi">
<INPUT NAME="typein" TYPE="text" SIZE="25" ALIGN=top><BR><!-- You can change the size of the textbox if you need-->
<font size=3 face="Comic Sans Ms">
<INPUT TYPE=Button Value="|<<" Align=left onclick="start()">
<INPUT TYPE=Button Value="<<" Align=left onclick="prev()">
<INPUT TYPE=Button Value="PLAY" Align=left onclick="go()">
<INPUT TYPE=Button Value=">>" Align=left onclick="next()">
<INPUT TYPE=Button Value=">>|" Align=left onclick="end()">
</FORM></font>
</Center>
</BODY>
</HTML>

اختر فايل الميدى من لستة

<html>
<head>
<title>Form-based Choose your Own MIDI - By Tarun Sukhani</title>
</head>
<body>

<br>
<SCRIPT LANGUAGE="JavaScript">
<!--
function PlaySong(SongURL)
{
PopUp = window.open (SongURL, "Crescendo", "toolbar=no,location=no,directories=no,status=no,sc rollbars=no,resizeable=no,copyhistory=no,width=200 ,height=30")
}
//-->
</SCRIPT>
<BR>
<FORM NAME="midiform"><SELECT NAME="list"><OPTION VALUE="sellout.mid" [SELECTED]>Sellout - Reel Big Fish
<OPTION VALUE="govt.mid">You are the Government - Bad Religion
<OPTION VALUe="damnit.mid">Damn It - Blink 182
</SELECT>
<P><INPUT TYPE=BUTTON VALUE="PLAY MIDI" onClick="PlaySong(midiform.list.options[midiform.list.selectedIndex].value)">
</FORM>
</body>
</html>

مغير الميدى

RD>
<!TITLE>MIDI by Day<!/TITLE>
<!DESCRIPTION>Midi Changer<!/DESCRIPTION>
<!CATEGORY>Audio Effects<!/CATEGORY>
<!-- START OF SCRIPT -->
<!-- For more scripts visit http://www.netpedia.com -->
<html>
<head>
<title>Midi Changer By Day - by Dan Fearing</title>
</head>
<body>
<center><SCRIPT LANGUAGE="JavaScript">
<!-- hiding
//This script written by Dan Fearing. Please do not erase//
// comment lines! Visit my web page at http://www.xkiller.simplenet.com//
page=new Date();
if (page.getDate() == 1)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/techno.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 2)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/1979.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 3)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/al.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 4)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/always.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 5)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/bcuz.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 6)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/bhcop.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 7)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/bomb.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 8)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/bone.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 9)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/californa.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 10)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/class.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 11)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/clown.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 12)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/dag.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 13)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/danger.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 14)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/dontlokb.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 15)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/eagle.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 16)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/enter.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 17)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/ff.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 18)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/ftloose.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 19)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/funk.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 20)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/gangsta.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 21)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/gilligan.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 22)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/hawaii50.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 23)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/hotelcal.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 24)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/indiana.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 25)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/ironic.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 26)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/jaws.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 27)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/jeremy.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 28)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/killing.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 29)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/stupdgrl.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 30)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/today.mid width=145 height=60 autostart=true volume=50>");
if (page.getDate() == 31)
document.write("<embed src=http://www.xkiller.simplenet.com/midis/x-files.mid width=145 height=60 autostart=true volume=50>");
page=new Date();
var months = new Array(13);
months[1] = "January";
months[2] = "February";
months[3] = "March";
months[4] = "April";
months[5] = "May";
months[6] = "June";
months[7] = "July";
months[8] = "August";
months[9] = "September";
months[10] = "October";
months[11] = "November";
months[12] = "December";
var dateObj = new Date()
var lmonth = months[dateObj.getMonth() + 1]
var fyear = "19" + dateObj.getYear()
var date = dateObj.getDate()
document.write("<br>" + lmonth + " " + date + ", " + fyear)
//done hiding -->
</SCRIPT></center><br>
</body>
</html>
<!-- END OF SCRIPT -->

تشغيل فايل ميدى عشوائى

RD>
<!TITLE>Random Midi<!/TITLE>
<!DESCRIPTION>Plays a random midi file.<!/DESCRIPTION>
<!CATEGORY>Audio Effects<!/CATEGORY>
<!-- START OF SCRIPT -->
<!-- For more scripts visit http://www.netpedia.com -->
<title>Netscape's JavaScript Tutorial</title>
<BODY bgcolor="ffffff">
<center><h1>Random MIDI Player</h1></center>
<hr width=75%>
This JavaScript allows you to play a random MIDI file.<p>
<center>
<SCRIPT>
<!-- close your eyes
// David McCoy; mccoy@midwest.net URL: http://www.midwest.net/scribers/mccoy/
// This is my random midi picker (v3.0); If use a variant of this in your page, then
// please email me :) You may also have to alter the links in the EMBED line so your
// browser can "find" your MIDI files. such as: document.write('<EMBED SRC=
// "http://www.server.com/page/' + midi + '" WIDTH=200 HEIGHT=60 AUTOSTART=TRUE>')
// var nummidi is the number of MIDIs you will be using
var nummidi = 5
day = new Date()
seed = day.getTime()
ran = parseInt(((seed - (parseInt(seed/1000,10) * 1000))/10)/100*nummidi + 1,10)
if (ran == (1))
midi=("abuse.mid")
if (ran == (2))
midi=("around.mid")
if (ran == (3))
midi=("closer.mid")
if (ran == (4))
midi=("dreams.mid")
if (ran == (5))
midi=("girl.mid")
document.write('<EMBED SRC= "' + midi + '" WIDTH=200 HEIGHT=55 AUTOSTART=TRUE>')
document.write('<BGSOUND SRC= "' + midi + '" loop=infinite AUTOSTART=TRUE>')
// open your eyes -->
</SCRIPT>
</center>
<p>
<font size=2>
Name 3 of the 5 Random MIDIs which are played at our
site and get your name and URL listed here. Send you
guesses to <a href="mailto:javascript@mydesktop.com">
javascript@mydesktop.com</a>.<p>
<u><b>Winners:</b></u><br>
<a href="http://www.picpakship.com/migrain">Steve Phillips</a><br>
<a href="http://ureview.ml.org">Nathan Poole</a>
<!-- END OF SCRIPT -->

موبايلي
31-05-2008, 12:05 AM
أتمنى أن توضح موضوعك بشكل أكبر

إن رغبتك أن نستفيد منه أكثر

ااااالمحبوب ااااا
01-06-2008, 02:36 AM
لو فـيـه أخـي شـرح أكـثـر الله لا يهينك

داعيه المستقبل
01-06-2008, 07:12 AM
السلام عليكم ورحمة الله وبركاته

ما هي لاسكريبتات