Would you like to make this site your homepage? It's fast and easy...
Yes, Please make this my home page!
مكتبه
الجافا 2
مرحبا
عزيزنا الزائر .. يسرنا أن نقدم لك اكواد الجافا هذه والتي تسهل الأمر
للمبتدئين بتصميم المواقع وأكواد الجافا ضروريه ونحتاجها كثيرا في تصميم
المواقع
فقط قم بنسخ ولزق
الكود الذي تريد بصفحتك....نتمنى أن تجد ماتبحث عنه بهذه
الصفحه
(ملاحظه : يجب
عليك تغيير مابالكود ليتناسب مع موقعك)
ساعه تظهر بشريط
العنوان
__________________________
<HTML>
<HEAD>
<TITLE>Clock And Date</TITLE>
<SCRIPT LANGUAGE="JavaScript">
<!-- Hide JavaScript From Java-Impaired Browsers
var timerID = null
var timerRunning = false
function MakeArray(size)
{
this.length = size;
for(var i = 1; i <= size; i++)
{
this[i] = "";
}
return this;
}
function stopclock (){
if(timerRunning)
clearTimeout(timerID);
timerRunning = false
}
function showtime () {
var now = new Date();
var year = now.getYear();
var month = now.getMonth() + 1;
var date = now.getDate();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds();
var day = now.getDay();
Day = new MakeArray(7);
Day[0]="SUN";
Day[1]="MON";
Day[2]="TUE";
Day[3]="WED";
Day[4]="THU";
Day[5]="FRI";
Day[6]="SAT";
var timeValue = "";
timeValue += (Day[day]) + " ";
timeValue += ((month < 10) ? " 0" : " ") + month + "-";
timeValue += date + "-" + year + " ";
timeValue += ((hours <= 12) ? hours : hours - 12);
timeValue += ((minutes < 10) ? ":0" : ":") + minutes;
timeValue += ((seconds < 10) ? ":0" : ":") + seconds;
timeValue += (hours < 12) ? " AM" : " PM";
window.status = timeValue;
timerID = setTimeout("showtime()",1000);
timerRunning = true
}
function startclock () {
stopclock();
showtime()
}
// End Hiding -->
</SCRIPT>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#FF0000" VLINK="#000080" ALINK="#000080" onLoad="startclock();">
ساعه وتاريخ ويوم في شريط
العنوان
______________________
<form><input type="button" value="Java" onClick="alert('هنا ستظهر رسالتك'); return true"></form>
عند الضغط على هذا الزر تظهر أي
رساله تقوم انت بوضعها لزوارك..كهذا النموذج
___________________________
<SCRIPT LANGUAGE="JavaScript">
<!-- hide this script tag's contents from old browsers
function goHist(a)
{
history.go(a); // Go back one.
}
//<!-- done hiding from old browsers -->
</script>
<FORM METHOD="post">
<INPUT TYPE="button" VALUE="الصفحه السابقه" onClick="goHist(-1)">
<INPUT TYPE="button" VALUE="الصفحه التاليه" onClick="goHist(1)">
</form>
هذا الكود لعمل زرين الأول للعوده
للصفحه السابقه والثاني للذهاب للصفحه التاليه
كهذا النموذج
<BODY>
<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Michael Tartaglia <stonedstan@hotmail.com> -->
<!-- Web Site: http://www.geocities.com/SiliconValley/Horizon/5235 -->
<!-- Begin
day = new Date();
miVisit = day.getTime();
function clock() {
dayTwo = new Date();
hrNow = dayTwo.getHours();
mnNow = dayTwo.getMinutes();
scNow = dayTwo.getSeconds();
miNow = dayTwo.getTime();
if (hrNow == 0) {
hour = 12;
ap = " AM";
} else if(hrNow <= 11) {
ap = " AM";
hour = hrNow;
} else if(hrNow == 12) {
ap = " PM";
hour = 12;
} else if (hrNow >= 13) {
hour = (hrNow - 12);
ap = " PM";
}
if (hrNow >= 13) {
hour = hrNow - 12;
}
if (mnNow <= 9) {
min = "0" + mnNow;
}
else (min = mnNow)
if (scNow <= 9) {
secs = "0" + scNow;
} else {
secs = scNow;
}
time = hour + ":" + min + ":" + secs + ap;
document.form.button.value = time;
self.status = time;
setTimeout('clock()', 1000);
}
function timeInfo() {
milliSince = miNow;
milliNow = miNow - miVisit;
secsVisit = Math.round(milliNow / 1000);
minsVisit = Math.round((milliNow / 1000) / 60);
alert("There have been " + milliSince + " milliseconds since midnight, January 1, 1970. "
+ "You have spent " + milliNow + " of those milliseconds on this page. "
+ ".... About " + minsVisit + " minutes, and "
+ secsVisit + " seconds.");
}
document.write("<form name=\"form\">"
+ "<input type=button value=\"Click for info!\""
+ " name=button onClick=\"timeInfo()\"></form>");
onError = null;
clock();
// End -->
</SCRIPT>
هذه ساعه تحسب الوقت الذي قضيته
بالصفحه
كهذا
النموذج
________________________________
<SCRIPT language="JavaScript">
<!--
/*
Whan I use IRC, I've always problems to know what's time in different city-country. So, I've
been write this short prog in JavaScript. Local daylight saving time/summer time is
unwarranted! I tested with Nestcape Navigator Gold 3.01 - Win95, Nestcape Navigator 3.0
- Win3.x and MS Internet 3.01 - Win95 affter update JScript VBScript V 2.0. I hope it'll help
to any users! Feel free to modify or copy this Script for non-commercial use, but please
leave this comment in the code and logo. If you find any bugs write, please, to:
Adress: Jaroslav Stika
Home:Zdiarska 1/5, 040 01 Kosice, Slovakia, phone: +421/095/742274
Work:bono Ltd, Hlavna 27,040 01 Kocice, Slovakia, phone: +421/095/760429
e-Mail: stika@bono.r-net.sk, home: http://www.bono.sk/jscripts/.
Written: 22. April 1997 version 2
*/
//variables
var Separator=";"
var Fields=6;
var days=new Array() //create array for days
days[0]="Sun";
days[1]="Mon";
days[2]="Tue";
days[3]="Wed";
days[4]="Thu";
days[5]="Fri";
days[6]="Sat";
var months=new Array() //create array for months
months[0]="Jan";
months[1]="Feb";
months[2]="Mar";
months[3]="Apr";
months[4]="May";
months[5]="Jun";
months[6]="Jul";
months[7]="Aug";
months[8]="Sep";
months[9]="Oct";
months[10]="Nov";
months[11]="Dec";
var wts=new Array() //create array for cities, states, offsets, hours, minutes
wts[1]="Abidjan;Cote d'Ivoire - CI;+;0;;"
wts[2]="Abu Dhabi;United Arab Emirates - AE;+;4;;"
wts[3]="Adana;Turkey - TR;+;2;;"
wts[4]="Addis Ababa; Ethiopia - ET;+;3;;"
wts[5]="Adelaide *;South Australia - Australia - AU;+;10;30;"
wts[6]="Aden; South Yemen - YE;+;3;;"
wts[7]="Aklavik;Yukon - Canada - CA;-;9;;"
wts[8]="Aleutian;Aleutian Islands;-;10;;"
wts[9]="Alexandria;Egypt - EG;+;2;;"
wts[10]="Algiers;Algeria - DZ;+;0;;"
wts[11]="Amsterdam;Netherlands - NL;+;1;;"
wts[12]="Anadyr; Russia - RU;+;13;;"
wts[13]="Anchorage;Alaska - USA - US;-;9;;"
wts[14]="Ankara;Turkey - TR;+;2;;"
wts[15]="Antananarivo; Madagascar - MG;+;3;;"
wts[16]="Antwerp;Belgium - BE;+;0;;"
wts[17]="Asuncion *;Paraguay - PY;-;3;;"
wts[18]="Athens;Greece - GR;+;2;;"
wts[19]="Atlanta;Georgia - USA - US;+;5;;"
wts[20]="Auckland *;New Zealand - NZ;+;12;;"
wts[21]="Aveiro;Portugal - PT;+;0;;"
wts[22]="Baghdad;Iraq - IQ;+;3;;"
wts[23]="Bamako;Mali - ML;+;0;;"
wts[24]="Bandar Seri Begawan;Brunei - BN;+;8;;"
wts[25]="Bangkok;Thailand - TH;+;7;;"
wts[26]="Bangui;Central African Republic - CF;+;1;;"
wts[27]="Banjul;Gambia - GM;+;1;;"
wts[28]="Barcelona;Spain - ES;+;1;;"
wts[29]="Barranquilla;Colombia - CO;-;5;;"
wts[30]="Beijing;China - CN;+;8;;"
wts[31]="Beirut;Lebanon - LB;+;2;;"
wts[32]="Belgrade;Serbia - YU;+;1;;"
wts[33]="Belize City;Belize - BZ;-;5;;"
wts[34]="Berlin;Germany - DE;+;1;;"
wts[35]="Blantyre;Malawi - MW;+;2;;"
wts[36]="Bogota;Colombia - CO;-;5;;"
wts[37]="Bologna;Italy - IT;+;2;;"
wts[38]="Bombay - Mumbai;India - IN;+;6;;"
wts[39]="Brasilia;Brazil - BR;-;3;;"
wts[40]="Bratislava;Slovak Republic - SK;+;1;;"
wts[41]="Brazzaville;Congo - CG;+;0;;"
wts[42]="Bridgetown;Barbados - BB;-;4;;"
wts[43]="Brisbane;Queensland - Australia - AU;+;10;;"
wts[44]="Brussels;Belgium - BE;+;1;;"
wts[45]="Bucharest;Romania - RO;+;2;;"
wts[46]="Budapest;Hungary - HU;+;1;;"
wts[47]="Buenos Aires;Argentina - AR;-;3;;"
wts[48]="Bujumbura;Burundi - BI;+;2;;"
wts[49]="Cairo;Italy - IT;+;2;;"
wts[50]="Calcutta;India - IN;+;6;;"
wts[51]="Calgary;Alberta - Canada - CA;-;6;;"
wts[52]="Cali;Colombia - CO;+;0;;"
wts[53]="Cape Town;South Africa - ZA;+;1;;"
wts[54]="Caracas;Venezuela - VE;-;4;;"
wts[55]="Cebu;Philippines - PH;+;8;;"
wts[56]="Chicago;Illinois - USA - US;-;6;;"
wts[57]="Christchurch;New Zealand - NZ;+;12;;"
wts[58]="Colombo;Sri Lanka - LK;+;5;30;"
wts[59]="Conakry;Guinea - GN;+;0;;"
wts[60]="Copenhagen;Denmark - DK;+;1;;"
wts[61]="Cotonou;Benin - BJ;+;0;;"
wts[62]="Dakar;Senegal - SN;+;0;;"
wts[63]="Dallas;Texas - USA - US;-;6;;"
wts[64]="Darwin;Northern Territory - Australia - AU;+;10;;"
wts[65]="Delhi;India - IN;+;5;30;"
wts[66]="Detroit;Michigan - USA - US;-;5;;"
wts[67]="Dhaka;Bangladesh - BD;+;6;;"
wts[68]="Djibouti;Djibouti - DJ;+;2;;"
wts[69]="Dover;Delaware - USA - US;-;5;;"
wts[70]="Dubai;United Arab Emirates - AE;+;3;;"
wts[71]="Dublin;Ireland - IE;+;0;;"
wts[72]="Dusseldorf;Germany - DE;+;1;;"
wts[73]="Edmonton;Alberta - USA - US;-;7;;"
wts[74]="Fairbanks;Alaska - USA - US;-;9;;"
wts[75]="Florence;Italy - IT;+;2;;"
wts[76]="Fort de France;Martinique - MQ;-;4;;"
wts[77]="Frankfurt;Germany - DE;+;1;;"
wts[78]="Freetown;Sierra Leone - SL;+;0;;"
wts[79]="Gaborone;Botswana - BW;+;1;;"
wts[80]="Geneva;Switzerland - CH;+;1;;"
wts[81]="Gibraltar;Spain - ES;+;1;;"
wts[82]="Glasgow;England - GB;+;0;;"
wts[83]="GMT;GMT - ;+;0;;"
wts[84]="Guatemala City;Guatemala - GT;-;6;;"
wts[85]="Guayaquil;Ecuador - EC;-;5;;"
wts[86]="Hamilton;Bermuda - GM;-;4;;"
wts[87]="Harare;Zimbabwe - ZW;+;2;;"
wts[88]="Havana;Cuba - CU;-;5;;"
wts[89]="Helsinki;Finland - FI;+;2;;"
wts[90]="Hobart;Tasmania - Australia - AU;+;10;;"
wts[91]="Hong Kong;Hong Kong - HK;+;8;;"
wts[92]="Honolulu;Hawaii - US;-;10;;"
wts[93]="Indianapolis;Indiana - USA - US;-;5;;"
wts[94]="Ipswich;Queensland - Australia - AU;+;10;;"
wts[95]="Islamabad;Pakistan - PK;+;5;;"
wts[96]="Istanbul;Turkey - TR;+;2;;"
wts[97]="Jakarta;Indonesia - ID;+;7;;"
wts[98]="Jerusalem;Israel - IL;+;2;;"
wts[99]="Johannesburg;South Africa - ZA;+;2;;"
wts[100]="Kabul;Afghanistan - AF;+;5;;"
wts[101]="Kaduna;Nigeria - NG;+;0;;"
wts[102]="Kahira;Egypt - EG;+;2;;"
wts[103]="Kamchatka;Russia - RU;+;11;;"
wts[104]="Kano;Nigeria - NG;+;1;;"
wts[105]="Karachi;Pakistan - PK;+;5;;"
wts[106]="Kathmandu;Nepal - NP;+;6;;"
wts[107]="Kiev;Ukraine - UA;+;3;;"
wts[108]="Kigali;Rwanda - RW;+;1;;"
wts[109]="Kingston;Jamaica - JM;-;5;;"
wts[110]="Kinshasa;Zaire - ZR;+;1;;"
wts[111]="Kobe;Japan - JP;+;9;;"
wts[112]="Kosice;Slovak Republic - SK;+;1;;"
wts[113]="Kuala Lumpur;Malaysia - MY;+;8;;"
wts[114]="Kuwait City;Kuwait - KW;+;3;;"
wts[115]="Kyoto;Japan - JP;+;9;;"
wts[116]="La Paz;Bolivia - BO;-;5;;"
wts[117]="Lagos;Nigeria - NG;+;1;;"
wts[118]="Libreville;Gabon - GA;+;0;;"
wts[119]="Lima;Peru - PE;-;5;;"
wts[120]="Limon;Costa Rica - CR;-;5;;"
wts[121]="Lisbon;Portugal - PT;+;0;;"
wts[122]="Lome;Togo - TO;+;0;;"
wts[123]="London;England - UK - GB;+;0;;"
wts[124]="Los Angeles;California - USA - US;-;8;;"
wts[125]="Lubumbashi;Zaire - ZR;+;1;;"
wts[126]="Luxembourg;Luxembourg - LU;+;1;;"
wts[127]="Madrid;Spain - ES;+;1;;"
wts[128]="Manama;Bahrain - BH;+;3;;"
wts[129]="Manila;Philippines - PH;+;8;;"
wts[130]="Maracaibo;Venezuela - VE;-;5;;"
wts[131]="Maseru;Lesotho - LS;+;2;;"
wts[132]="Mayaguez;Puerto Rico - PR;-;4;;"
wts[133]="Mbabane;Swaziland - SZ;+;2;;"
wts[134]="Medan;Indonesia - ID;+;8;;"
wts[135]="Medellin;Colombia - CO;-;5;;"
wts[136]="Melbourne *;Victoria - Australia - AU;+;10;;"
wts[137]="Mexico City;Mexico - MX;-;6;;"
wts[138]="Milan;Italy - IT;+;1;;"
wts[139]="Mogadishu;Somalia - SO;+;3;;"
wts[140]="Mombasa;Kenya - KE;+;3;;"
wts[141]="Monrovia;Liberia - LR;+;0;;"
wts[142]="Monte Carlo;Monaco - MC;+;1;;"
wts[143]="Montevideo;Uruguay - UY;-;3;;"
wts[144]="Montreal;Quebec - Canada - CA;-;5;;"
wts[145]="Morgantown;West Virginia - USA - US;-;5;;"
wts[146]="Moscow;Russia - RU;+;3;;"
wts[147]="Mumbai - Bombay;India - IN;+;5;30;"
wts[148]="Munich;Germany - DE;+;1;;"
wts[149]="Murmansk;Rusia - RU;+;2;;"
wts[150]="Muscat;Oman - OM;+;3;;"
wts[151]="N'Djamena;Chad - TD;+;0;;"
wts[152]="Nagasaki;Japan - JP;+;9;;"
wts[153]="Nagoya;Japan - JP;+;9;;"
wts[154]="Nairobi;Kenia - KE;+;3;;"
wts[155]="Naples;Italy - IT;+;1;;"
wts[156]="Nassau;Bahamas - BS;-;5;;"
wts[157]="New Hebrides;New Hebrides - US;+;11;;"
wts[158]="New York City;New York - USA - US;-;5;;"
wts[159]="Newfoundland;Newfoundland - Canada - CA;-;3;;"
wts[160]="Niamey;Niger - NE;+;0;;"
wts[161]="Nice;France - FR;+;1;;"
wts[162]="Nicosia;Cyprus - CY;+;2;;"
wts[163]="Nome;Alaska - USA - US;-;9;;"
wts[164]="Nottingham;England - UK - GB;+;0;;"
wts[165]="Nouakchott;Mauritania - MR;+;0;;"
wts[166]="Nuk;Greenland - GL;-;3;30;"
wts[167]="Odessa;Ukraine - UA;+;3;;"
wts[168]="Oran;Algeria - DZ;+;0;;"
wts[169]="Osaka;Japan - JP;+;9;;"
wts[170]="Oslo;Norway - NO;+;1;;"
wts[171]="Ottawa;Ontario - Canada - CA;-;5;;"
wts[172]="Ouagadougou;Burkina Faso - BF;+;0;;"
wts[173]="Oulu;Finland - FI;+;2;;"
wts[174]="Oxford;England - UK - GB;+;0;;"
wts[175]="Palma;Mallorca - ES;+;1;;"
wts[176]="Panjim;Goa - India - IN;+;5;30;"
wts[177]="Paramaribo;Suriname - SR;-;4;;"
wts[178]="Paris;France - FR;+;1;;"
wts[179]="Peking;China - CN;+;8;;"
wts[180]="Perth;Western Australia - Australia - AU;+;8;;"
wts[181]="Phoenix;Arizona - USA - US;-;7;;"
wts[182]="Ponce;Puerto Rico - PR;-;4;;"
wts[183]="Port Louis;Mauritius - MU;+;4;;"
wts[184]="Port Moresby;Papua New Guinea - PG;+;10;;"
wts[185]="Port of Spain;Trinidad and Tobago - TT;-;4;;"
wts[186]="Prague;Czech Republic - CZ;+;1;;"
wts[187]="Praia;Cape Verde - CV;-;2;;"
wts[188]="Puntarenas;Costa Rica - CR;-;5;;"
wts[189]="Quebec;Quebec - Canada - CA;-;5;;"
wts[190]="Quito;Ecuador - EC;-;5;;"
wts[191]="Rangoon;Barma - ;+;7;;"
wts[192]="Reykjavik;Iceland - IS;-;1;;"
wts[193]="Riga;Latvia - LW;+;4;;"
wts[194]="Rio de Janeiro;Brazil - BR;-;3;;"
wts[195]="Riyadh;Saudi Arabia - SA;+;3;;"
wts[196]="Rome;Italy - IT;+;1;;"
wts[197]="Saigon;Vietnam - VN;+;7;;"
wts[198]="Saint Petersburg - Leningrad;Russia - RU;+;3;;"
wts[199]="Salt Lake City;Utah - USA - US;-;7;;"
wts[200]="Salzburg;Austria - AU;+;1;;"
wts[201]="San Francisco;California - USA - US;-;8;;"
wts[202]="San Jose;Costa Rica - CR;-;6;;"
wts[203]="San Juan;Puerto Rico - PR;-;4;;"
wts[204]="Santa Cruz de Tenerife;Canarias Islands - ES;+;0;;"
wts[205]="Santiago *;Chile - CL;-;3;;"
wts[206]="Santo Domingo;Dominican Republic - DO;-;4;;"
wts[207]="Sao Paulo;Brazil - BR;-;3;;"
wts[208]="Sapporo;Japan - JP;+;9;;"
wts[209]="Sarajevo;Bosnia - BA;+;1;;"
wts[210]="Seattle;Washington - USA - US;-;8;;"
wts[211]="Seoul;South Korea - KR;+;9;;"
wts[212]="Shanghai;China - CN;+;8;;"
wts[213]="Singapore;Singapore - SG;+;8;;"
wts[214]="Sofia;Bulgaria - BG;+;2;;"
wts[215]="Stockholm;Sweden - SE;+;1;;"
wts[216]="Stuttgart;Germany - DE;+;1;;"
wts[217]="Surabaya;Indonesia - ID;+;7;;"
wts[218]="Suva;Fiji Islands - FJ;+;12;;"
wts[219]="Sydney *;New South Wales - Australia - AU;+;11;;"
wts[220]="Taipei;Thaiwan - TH;+;8;;"
wts[221]="Tallinn;Estonia - EE;+;2;;"
wts[222]="Tampere;Finland - FI;+;2;;"
wts[223]="Tashkent;Uzbekistan - UZ;+;3;;"
wts[224]="Tegucigalpa;Honduras - HN;-;5;;"
wts[225]="Tehran;Iran - IR;+;4;;"
wts[226]="Tel Aviv;Israel - IL;+;2;;"
wts[227]="Tokyo;Japan - JP;+;9;;"
wts[228]="Toronto;Ontario - Canada - CA;-;5;;"
wts[229]="Tripoli;Libya - LY;+;1;;"
wts[230]="Tunis;Tunisia - TN;+;1;;"
wts[231]="Turin;Italy - IT;+;1;;"
wts[232]="Ulanbatar;Mongolia - MN;+;8;;"
wts[233]="Valletta;Malta - MT;+;1;;"
wts[234]="Vancouver;British Columbia - Canada - CA;-;8;;"
wts[235]="Vatican;Vatican City - VA;+;1;;"
wts[236]="Venice;Italy - IT;+;1;;"
wts[237]="Victoria Falls;Zimbabwe - ZW;+;2;;"
wts[238]="Vienna;Austria - AT;+;1;;"
wts[239]="Vientiane;Laos - LA;+;7;;"
wts[240]="Vladimir;Russia - RU;+;3;;"
wts[241]="Vladivostok;Russia - RU;+;10;;"
wts[242]="Warsaw;Poland - PL;+;1;;"
wts[243]="Washington DC;Washington - USA - US;-;5;;"
wts[244]="Wellington *;New Zealand - NZ;+;12;;"
wts[245]="Winnipeg;Manitoba - Canada - CA;-;6;;"
wts[246]="Yalta;Ukraine - UA;+;3;;"
wts[247]="Zagreb;Croatia - HR;+;1;;"
wts[248]="Zaragoza;Spain - ES;+;1;;"
wts[249]="Zurich;Switzerland - CH;+;1;;"
//* means that the shown time has been adjusted due to local daylight saving. Local daylight
// saving time/summer time is unwarranted!
var ST=null;
var constanta=3600000;
var GMTClockID=null;
var GMTClockRunning=false;
var TSCClockID=null;
var TSCClockRunning=false;
var GMT="";
function SystemClock(){ //simple clock for current system time
var time=new Date()
var x=time
var y=x.getDate(); (y<10) ? y="0"+y : y
var z=x.getYear(); (z>70 && z<=99) ? z="19"+z : z="20"+z
var hs=x.getHours(); (hs<10) ? hs="0"+hs : hs
var ms=x.getMinutes();(ms<10) ? ms="0"+ms : ms
var ss=x.getSeconds();(ss<10) ? ss="0"+ss : ss
ST=days[x.getDay()]+", "+y+" "+months[x.getMonth()]+" "+z+" "+hs+":"+ms+":"+ss;
document.clockForm.digits.value=ST+" "+"YST";
id=setTimeout("SystemClock()",1000) //displays system time
}
function GMTClock(){ //displays selected different time
var a1=new Date()
var a2=a2=a1.toLocaleString();
a2=Date.parse(a2);
if(offset=="+"){
var a3=new Date(a2-addhm);
}
else{var a3=new Date(a2+addhm);
}
var bx=""+a3;
var sn=bx.length;
var bden=bx.substring(0,3);
var bdd=bx.substring(8,10);
var bm=bx.substring(4,7);
var br=bx.substring(sn-4,sn);
var bc=bx.substring(11,19);
GMT=bden+", "+bdd+" "+bm+" "+br+" "+bc;
document.clockForm.digits1.value=GMT+" "+"GMT"; //displays selected time minus your time zone offset from OS
stopGMTClock(); GMTClockID=setTimeout("GMTClock()",1000); GMTClockRunning=true;
}
function where1(si){ //read option selected
if(si != 0){
offset=GetField(wts[si],3); //realy offset to GMT from array wts
addh=GetField(wts[si],4);
if(GetField(wts[si],5) != ""){ //if find minutes in array wts converts minutes to milisecs
addm=(GetField(wts[si],5)/60);
}
else{addm=0;
}
addhm=(constanta*addh)+(constanta*addm);
stopTSCClock(); document.clockForm.digits2.value=""; GMTClock();
}
else{
stopGMTClock(); document.clockForm.digits1.value="";
stopTSCClock(); document.clockForm.digits2.value="";
}
}
function TSCClock(){ //displays selected different time
var a11=new Date(GMT)
var a22=a11.toLocaleString();
a22=Date.parse(a22);
if(offset1=="+"){
var a33=new Date(a22+addhm1)
}
else{var a33=new Date(a22-addhm1)
}
var bx1=""+a33;
var sn1=bx1.length;
var bden1=bx1.substring(0,3);
var bdd1=bx1.substring(8,10);
var bm1=bx1.substring(4,7);
var br1=bx1.substring(sn1-4,sn1);
var bc1=bx1.substring(11,19);
document.clockForm.digits2.value=bden1+", "+bdd1+" "+bm1+" "+br1+" "+bc1+" TSC"; //displays selected time minus your time zone offset from OS
stopTSCClock(); TSCClockID=setTimeout("TSCClock()",1000); TSCClockRunning=true;
}
function where2(si){ //read option selected
if(si !=0 && GMT !=""){
offset1=GetField(wts[si],3); //realy offset to GMT from array wts
addh1=GetField(wts[si],4);
if(GetField(wts[si],5) != ""){ //if find minutes in array wts converts minutes to milisecs
addm1=(GetField(wts[si],5)/60);
}
else{addm1=0;
}
addhm1=(constanta*addh1)+(constanta*addm1);TSCClock();
}
else{
stopTSCClock();
document.clockForm.digits2.value="";
alert("Where are you from ???");
document.clockForm.c2.options[0].selected=true;
document.clockForm.c1.focus();
}
}
function stopGMTClock(){ //stops GMT time
if(GMTClockRunning) clearTimeout(GMTClockID); GMTClockRunning=false;
}
function stopTSCClock(){ //stops Any time
if(TSCClockRunning) clearTimeout(TSCClockID); TSCClockRunning=false;
}
function GetField(Entry,number){ //read fields from array wts
var Out="";
var FirstChar;
var LastChar;
FirstChar=0;
LastChar=Entry.indexOf(Separator);
if(number==1){
Out+=Entry.substring(FirstChar,LastChar);
return Out;
}
if(number==Fields){
Out+=Entry.substring(Entry.lastIndexOf(Separator)+1,Entry.length);
return Out;
}
for(var i=2;i<=number;i++){
FirstChar=LastChar+1;
LastChar=Entry.indexOf(Separator, FirstChar);
}
Out+=Entry.substring(FirstChar,LastChar);
return Out;
}
function writecities(str,n){ //writes options from array wts
if(n=="c1"){document.writeln('<SELECT NAME="c1" onChange="where1(selectedIndex)">');}
if(n=="c2"){document.writeln('<SELECT NAME="c2" onChange="where2(selectedIndex)">');}
document.writeln("<OPTION VALUE='0'>"+str);
for(var s=1;s<wts.length;s++){
document.write("<OPTION VALUE='"+s+"'>"+GetField(wts[s],1)+" - "+GetField(wts[s],2));
}
document.writeln("</SELECT>");
}
//-->
</SCRIPT>
هذا الكود لعرض التوقيت في جميع
دول العالم
الخطوه الأولى ..انسخ
هذا الكود لمنطقة الرأس لصفحتك
=============
<CENTER>
<FORM NAME="clockForm">
<TABLE BORDER=1 cellpadding=2 cellspacing=10>
<TR>
<TD ALIGN=CENTER VALIGN=CENTER COLSPAN="2"><FONT SIZE=+3 FACE="Verdana, Arial, Helvetica"><B><I>World Time Zone</I></B></FONT></TD>
</TR>
<TR>
<TD ALIGN=LEFT VALIGN=CENTER> <B><FONT COLOR="#FF0000" FACE="Verdana, Arial, Helvetica">Your Sytem Time:</FONT></B></TD>
<TD ALIGN=LEFT><INPUT TYPE="text" NAME="digits" SIZE=32 VALUE=""></TD>
</TR>
<TR>
<TD ALIGN=CENTER VALIGN=CENTER COLSPAN="2">
<SCRIPT language="JavaScript">
<!--
var str="Where are you from?";
var n="c1";
writecities(str,n);
document.clockForm.c1.focus();
//-->
</SCRIPT>
</TD>
</TR>
<TR>
<TD ALIGN=LEFT VALIGN=CENTER> <B><FONT COLOR="#0000FF" FACE="Verdana, Arial, Helvetica">Greenwich Mean Time: </FONT></B></TD>
<TD ALIGN=LEFT><INPUT TYPE="text" NAME="digits1" SIZE=32 VALUE=""></TD>
</TR>
<TR>
<TD ALIGN=CENTER VALIGN=CENTER COLSPAN="2">
<SCRIPT language="JavaScript">
<!--
var str="Select different city, please";
var n="c2";
writecities(str,n);
//-->
</SCRIPT>
</TD>
</TR>
<TR>
<TD ALIGN=LEFT VALIGN=CENTER> <B><FONT COLOR="#00FF00" FACE="Verdana, Arial, Helvetica">Time Of Selected City:</FONT></B></TD>
<TD ALIGN=LEFT><INPUT TYPE="text" NAME="digits2" SIZE=32 VALUE=""></TD>
</TR>
</TABLE>
</FORM>
</CENTER>
<p align="center"><font face="arial" size="-2">This free script provided by</font><br>
<font face="arial, helvetica" size="-2"><a href="http://wsabstract.com">Website
Abstraction</a></font></p>
الخطوه الثانيه ..انسخ هذا الكود لمنطقة الجسم لصفحتك
=============
<body ONLOAD="SystemClock()">
الخطوه الثالثه ..انسخ هذا الكود لمنطقة الجسم لصفحتك
____________________________
<FORM NAME="Calc">
<TABLE BORDER=4>
<TR>
<TD>
<INPUT TYPE="text" NAME="Input" Size="16">
<br>
</TD>
</TR>
<TR>
<TD>
<INPUT TYPE="button" NAME="one" VALUE=" 1 " OnClick="Calc.Input.value += '1'">
<INPUT TYPE="button" NAME="two" VALUE=" 2 " OnCLick="Calc.Input.value += '2'">
<INPUT TYPE="button" NAME="three" VALUE=" 3 " OnClick="Calc.Input.value += '3'">
<INPUT TYPE="button" NAME="plus" VALUE=" + " OnClick="Calc.Input.value += ' + '">
<br>
<INPUT TYPE="button" NAME="four" VALUE=" 4 " OnClick="Calc.Input.value += '4'">
<INPUT TYPE="button" NAME="five" VALUE=" 5 " OnCLick="Calc.Input.value += '5'">
<INPUT TYPE="button" NAME="six" VALUE=" 6 " OnClick="Calc.Input.value += '6'">
<INPUT TYPE="button" NAME="minus" VALUE=" - " OnClick="Calc.Input.value += ' - '">
<br>
<INPUT TYPE="button" NAME="seven" VALUE=" 7 " OnClick="Calc.Input.value += '7'">
<INPUT TYPE="button" NAME="eight" VALUE=" 8 " OnCLick="Calc.Input.value += '8'">
<INPUT TYPE="button" NAME="nine" VALUE=" 9 " OnClick="Calc.Input.value += '9'">
<INPUT TYPE="button" NAME="times" VALUE=" x " OnClick="Calc.Input.value += ' * '">
<br>
<INPUT TYPE="button" NAME="clear" VALUE=" c " OnClick="Calc.Input.value = ''">
<INPUT TYPE="button" NAME="zero" VALUE=" 0 " OnClick="Calc.Input.value += '0'">
<INPUT TYPE="button" NAME="DoIt" VALUE=" = " OnClick="Calc.Input.value = eval(Calc.Input.value)">
<INPUT TYPE="button" NAME="div" VALUE=" / " OnClick="Calc.Input.value += ' / '">
<br>
</TD>
</TR>
</TABLE>
</FORM>
<p align="center"><font face="arial" size="-2">This free script provided by</font><br>
<font face="arial, helvetica" size="-2"><a href="http://wsabstract.com">Website
Abstraction</a></font></p>
آله حاسبه رائعه..مثل هذه
..جربها
______________________
<script language="JavaScript">
<!--
//you can assign the initial color of the background here
r=255;
g=255;
b=255;
flag=0;
t=new Array;
o=new Array;
d=new Array;
function hex(a,c)
{
t[a]=Math.floor(c/16)
o[a]=c%16
switch (t[a])
{
case 10:
t[a]='A';
break;
case 11:
t[a]='B';
break;
case 12:
t[a]='C';
break;
case 13:
t[a]='D';
break;
case 14:
t[a]='E';
break;
case 15:
t[a]='F';
break;
default:
break;
}
switch (o[a])
{
case 10:
o[a]='A';
break;
case 11:
o[a]='B';
break;
case 12:
o[a]='C';
break;
case 13:
o[a]='D';
break;
case 14:
o[a]='E';
break;
case 15:
o[a]='F';
break;
default:
break;
}
}
function ran(a,c)
{
if ((Math.random()>2/3||c==0)&&c<255)
{
c++
d[a]=2;
}
else
{
if ((Math.random()<=1/2||c==255)&&c>0)
{
c--
d[a]=1;
}
else d[a]=0;
}
return c
}
function do_it(a,c)
{
if ((d[a]==2&&c<255)||c==0)
{
c++
d[a]=2
}
else
if ((d[a]==1&&c>0)||c==255)
{
c--;
d[a]=1;
}
if (a==3)
{
if (d[1]==0&&d[2]==0&&d[3]==0)
flag=1
}
return c
}
function disco()
{
if (flag==0)
{
r=ran(1, r);
g=ran(2, g);
b=ran(3, b);
hex(1,r)
hex(2,g)
hex(3,b)
document.bgColor="#"+t[1]+o[1]+t[2]+o[2]+t[3]+o[3]
flag=50
}
else
{
r=do_it(1, r)
g=do_it(2,g)
b=do_it(3,b)
hex(1,r)
hex(2,g)
hex(3,b)
document.bgColor="#"+t[1]+o[1]+t[2]+o[2]+t[3]+o[3]
flag--
}
if (document.all)
setTimeout('disco()',50)
}
//-->
</script>
تأثير رائع جدا يجعل الخلفيه
تتقلب ألوانها بطريقه خفيه وجميله
1- ولكن يجب
عليك نسخ الكود بمنطقه الرأس
لصفحتك
<body onload="disco()">
2- ثم انسخ هذا الكود بمنطقة
الجسم لصفحتك
___________________________________________________________________________
ارسال موقعك الا محركات
البحث
<b><font face="Traditional Arabic" size="4" color="#FFFFFF">ارسالالى محركات
البحث</font></b></u></p><font color="#cccc66" face="Trebuchet MS, Arial, Helvetica"><form action="http://websitesubmit.hypermart.net/free/submit.cgi" method="post"><input name="action" type="hidden" value="submit"><input name="thankyou" type="hidden" value="yes"><div align="center"><center><table bgColor="#666666" border="0" cellPadding="0" cellSpacing="0" width="280"><tbody><tr><td align="middle" bgColor="#666600"><b><font color="#ffffff" face="Traditional Arabic" size="3">ارسلموقعك مع
موقع المولع</font></b></td></tr><tr><td bgColor="#666600"><table bgColor="#f4e8bf" border="0" cellPadding="1" width="280"><tbody><tr><td bgColor="#003300" vAlign="top"><font face="Arial, Helvetica, sans-serif" size="2">اسمموقعك</font></td><td bgColor="#003300" vAlign="top"><font face="Arial, Helvetica, sans-serif" size="2"><input name="url" value="http://" size="20"></font></td></tr><tr><td bgColor="#003300" vAlign="top"><font face="Arial, Helvetica, sans-serif" size="2">البريدالالكترونى</font></td><td bgColor="#003300" vAlign="top"><font face="Arial, Helvetica, sans-serif" size="2"><input name="email" size="20"></font></td></tr></tbody></table></td></tr><tr><td align="middle" bgColor="#666600"><table border="0" width="280"><tbody><tr><td align="middle"></td></tr></tbody></table></td></tr><tr><td align="middle" bgColor="#003300"><table bgColor="#e79e45" border="0" cellSpacing="1" width="280"><tbody><tr><td bgColor="#666633" vAlign="top"><font color="#ffffff" face="Traditional Arabic"><b>DefaultEngines</b></font></td><td bgColor="#666633" vAlign="top"><font color="#ffffff" face="Traditional Arabic"><b>AdditionalEngines</b></font></td></tr><tr><td align="left" bgColor="#003300" vAlign="top"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2"><input CHECKED name="engines1" type="checkbox" value="altavista"></font><a href="http://altavista.digital.com/"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">altavista</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2"><br><input CHECKED name="engines2" type="checkbox" value="excite"></font><a href="http://www.excite.com/"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">excite</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2"><br><input CHECKED name="engines3" type="checkbox" value="go"></font><a href="http://www.go.com"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">go</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2"><br><input CHECKED name="engines4" type="checkbox" value="google"></font><a href="http://www.google.com/"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">google</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2"><br><input CHECKED name="engines5" type="checkbox" value="hotbot"></font><a href="http://www.hotbot.com/"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">hotbot</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2"><br><input CHECKED name="engines6" type="checkbox" value="infoseek"></font><a href="http://www.infoseek.com/"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">infoseek</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2"><br><input CHECKED name="engines7" type="checkbox" value="lycos"></font><a href="http://www.lycos.com/"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">lycos</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2"><br><input CHECKED name="engines8" type="checkbox" value="northernlight"></font><a href="http://www.northernlight.com"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">northernlight</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2"><br><input CHECKED name="engines9" type="checkbox" value="whatyouseek"></font><a href="http://www.whatyouseek.com/"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">whatyouseek</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2"><br><input CHECKED name="engines10" type="checkbox" value="webcrawler"></font><a href="http://www.webcrawler.com/"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">webcrawler</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2"><br><input CHECKED name="engines11" type="checkbox" value="fastsearch"></font><a href="http://www.alltheweb.com/"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">fastsearch</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2"><br><input CHECKED name="engines12" type="checkbox" value="infomak"></font><a href="http://www.infomak.com/"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">infomak</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2"><br></font></td><td align="left" bgColor="#003300" vAlign="top"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2"><input name="engines13" type="checkbox" value="acoon"></font><a href="http://www.acoon.de"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">acoon</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">(.de)<br><input name="engines14" type="checkbox" value="altavista-au"></font><a href="http://www.altavista.yellowpages.com.au/"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">altavista</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">(.au)<br><input name="engines15" type="checkbox" value="altavista-de"></font><a href="http://www.altavista.de"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">altavista-de</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">(.de)<br><input name="engines16" type="checkbox" value="anzwers"></font><a href="http://www.anzwers.com/"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">anzwers</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">(.au.nz)<br><input name="engines17" type="checkbox" value="euroferret"></font><a href="http://www.euroferret.com/"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">euroferret</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">(european)<br><input name="engines18" type="checkbox" value="fireball"></font><a href="http://www.fireball.de"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">fireball</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">(.de)<br><input name="engines19" type="checkbox" value="intersearch-au"></font><a href="http://194.232.15.66"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">intersearch-au</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">(.au)<br><input name="engines20" type="checkbox" value="voila"></font><a href="http://www.voila.com/"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">voila</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">(.fr)<br><input name="engines" type="checkbox" value="webwombat"></font><a href="http://www.webwombat.com/"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">webwombat</font></a><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="2">(.au.nz)</font><p align="center"><font color="#ffffff" face="Comic Sans MS" size="1"><br></font></p></td></tr></tbody></table></td></tr><tr><td bgColor="#666600"><table bgColor="#ffff80" border="0" cellPadding="0" cellSpacing="0" width="280"><tbody><tr><td align="middle" bgColor="#666600"><font size="1"><br><font face="Arial, Helvetica, sans-serif" size="2"><input type="submit" value="سجل موقعك"></font><br><br></font></td></tr></tbody></table></td></tr></tbody></table></center></div></form>
<p> </p>
اربعين محرك بحث
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0037)http://www.pagego.com/supersearch.htm -->
<HTML><HEAD><TITLE>PG Super Search</TITLE>
<META content="text/html; charset=windows-1256" http-equiv=Content-Type><!--This file created 07:32 PM 03/13/00 by Claris Home Page version 3.0-->
<META content="Microsoft FrontPage 4.0" name=GENERATOR><X-CLARIS-WINDOW
RIGHT="1002" LEFT="13" BOTTOM="595" TOP="11"><X-CLARIS-TAGVIEW
MODE="minimal"></HEAD>
<BODY bgColor=#ffffff vLink=#0000ff>
<P>
<P><!--You may use this script however you want--><!--Script By PageGo.com Web Design--></P>
<P>
<SCRIPT language=javascript type=text/javascript><!--Begin hiding from older browsers
function searchengine()
{
if (document.search.searchmenu[0].selected) {
window.self.location.href = ""
}
if (document.search.searchmenu[1].selected) {
window.self.location.href = "http://search.yahoo.com/bin/search?p=" + document.search.searchtext.value + ""
}
if (document.search.searchmenu[2].selected) {
window.self.location.href = "http://infoseek.go.com/Titles?qt=" + document.search.searchtext.value + "&col=WW&svx=home_searchbox&sv=IS&lk=noframes"
}
if (document.search.searchmenu[3].selected) {
window.self.location.href = "http://search.aol.com/dirsearch.adp?query=" + document.search.searchtext.value + ""
}
if (document.search.searchmenu[4].selected) {
window.self.location.href = "http://www.altavista.com/cgi-bin/query?pg=q&sc=on&q=" + document.search.searchtext.value + "&kl=XX&stype=stext&search.x=23&search.y="
}
if (document.search.searchmenu[5].selected) {
window.self.location.href = "http://www.ask.com/main/askjeeves.asp?ask=" + document.search.searchtext.value + "&origin=&site_name=Jeeves&metasearch=yes"
}
if (document.search.searchmenu[6].selected) {
window.self.location.href = "http://www.lycos.com/srch/?lpv=1&loc=searchhp&query=" + document.search.searchtext.value + "&x=23&y=12"
}
if (document.search.searchmenu[7].selected) {
window.self.location.href = "http://www.goto.com/d/search/;$sessionid$DQ524IYAACAVJQFIEFNAPUQ?type=home&Keywords=" + document.search.searchtext.value + "&Find+It%21.x=23&Find+It%21.y=23"
}
if (document.search.searchmenu[8].selected) {
window.self.location.href = "http://search.excite.com/search.gw?search=" + document.search.searchtext.value + ""
}
if (document.search.searchmenu[9].selected) {
window.self.location.href = "http://search.netscape.com/cgi-bin/search?search=" + document.search.searchtext.value + ""
}
if (document.search.searchmenu[10].selected) {
window.self.location.href = "http://hotbot.lycos.com/?MT=" + document.search.searchtext.value + "&SM=MC&DV=0&LG=any&DC=10&DE=2&BT=H&Search.x=30&Search.y=7"
}
if (document.search.searchmenu[11].selected) {
window.self.location.href = "http://www.snap.com/search/directory/results/1,61,-0,00.html?tag=st.v2.fdsb.1&keyword=" + document.search.searchtext.value + ""
}
if (document.search.searchmenu[12].selected) {
window.self.location.href = "http://search.msn.com/results.asp?co=20&RS=CHECKED&FORM=MSNH&ba=0&v=1&q=" + document.search.searchtext.value + ""
}
if (document.search.searchmenu[13].selected) {
window.self.location.href = "http://www.northernlight.com/nlquery.fcg?cb=0&qr=" + document.search.searchtext.value + "&orl=&search.x=24&search.y=10"
}
if (document.search.searchmenu[14].selected) {
window.self.location.href = "http://www.google.com/search?q=" + document.search.searchtext.value + ""
}
if (document.search.searchmenu[15].selected) {
window.self.location.href = "http://search.metacrawler.com/crawler?general=" + document.search.searchtext.value + "&method=0&target=®ion=0&timeout=0&sort=0&refer=mc-go2net&swizzled=1"
}
if (document.search.searchmenu[16].selected) {
window.self.location.href = "http://magellan.excite.com/search.gw?search=" + document.search.searchtext.value + "&look=magellan&x=20&y=12"
}
if (document.search.searchmenu[17].selected) {
window.self.location.href = "http://www.webcrawler.com/cgi-bin/WebQuery?searchText=" + document.search.searchtext.value + ""
}
if (document.search.searchmenu[18].selected) {
window.self.location.href = "http://www.directhit.com/fcgi-bin/DirectHitWeb.fcg?service=web&type=srch&fmt=html&template=search&qry=" + document.search.searchtext.value + "&submit.x=42&submit.y=4"
}
if (document.search.searchmenu[19].selected) {
window.self.location.href ="http://www.savvysearch.com/search?q=" + document.search.searchtext.value + "&op=a&cat="
}
if (document.search.searchmenu[20].selected) {
window.self.location.href = "http://search.yahooligans.com/search/ligans?p=" + document.search.searchtext.value + ""
}
if (document.search.searchmenu[21].selected) {
window.self.location.href ="http://search.cnn.com/query.html?qt=" + document.search.searchtext.value + "&qc=&col=cnni&qm=0&st=1&nh=10&lk=1&rf=1"
}
if (document.search.searchmenu[22].selected) {
window.self.location.href = "http://search.local.yahoo.com/zipsearch?q=" + document.search.searchtext.value + ""
}
if (document.search.searchmenu[23].selected) {
window.self.location.href = "http://money.go.com/Quote?ticker=" + document.search.searchtext.value + ""
}
if (document.search.searchmenu[24].selected) {
window.self.location.href = "http://search.espn.go.com/query.html?qt=" + document.search.searchtext.value + "&col=0"
}
if (document.search.searchmenu[25].selected) {
window.self.location.href = "http://search.weather.yahoo.com/weather/query.cgi?q=" + document.search.searchtext.value + ""
}
if (document.search.searchmenu[26].selected) {
window.self.location.href = "http://www.audiofind.com:70/?audiofindsize=0&audiofindsearch=" + document.search.searchtext.value + ""
}
if (document.search.searchmenu[27].selected) {
window.self.location.href = "http://my.av.com/scripts/staticpage.dll?spage=AE%2Fvideo%2Fvideo_browse.htm&only=y&mtitle=" + document.search.searchtext.value + "&onlymycinemas=1&onlymycinemas=0&ck=&uh=159806850%2C2%2C&ver=hb1.2.20"
}
if (document.search.searchmenu[28].selected) {
window.self.location.href = "http://download.cnet.com/downloads/1,10150,0-10000-103-0-1-7,00.html?tag=st%2Edl%2E10001%2Esbsr&qt=" + document.search.searchtext.value + "&cn=&ca=10000"
}
if (document.search.searchmenu[29].selected) {
window.self.location.href = "http://www.findlaw.com/scripts/search.pl?CiRestriction=" + document.search.searchtext.value + ""
}
if (document.search.searchmenu[30].selected) {
window.self.location.href = "http://search.ebay.com/cgi-bin/texis/ebay/results.html?query=" + document.search.searchtext.value + "&maxRecordsReturned=300&maxRecordsPerPage=50&SortProperty=MetaEndSort&ht=1"
}
if (document.search.searchmenu[31].selected) {
window.self.location.href = "http://www.etoys.com/exec/search.cgi?store=e&emp=et&keyword=" + document.search.searchtext.value + ""
}
if (document.search.searchmenu[32].selected) {
window.self.location.href = "http://www.shopping.com/search/types.sdc?si=KkmZE&q=" + document.search.searchtext.value + "&pa=p&Search.x=44&Search.y=9"
}
if (document.search.searchmenu[33].selected) {
window.self.location.href = "http://www.altavista.com/cgi-bin/query?pg=q&what=web&q=" + document.search.searchtext.value + "&stype=simage&oprem=1"
}
if (document.search.searchmenu[34].selected) {
window.self.location.href = "http://www.altavista.com/cgi-bin/query?pg=q&what=web&q=" + document.search.searchtext.value + "&stype=saudio&oprem=1&search.x=3&search.y=9"
}
if (document.search.searchmenu[35].selected) {
window.self.location.href = "http://www.altavista.com/cgi-bin/query?pg=q&what=web&q=" + document.search.searchtext.value + "&stype=svideo&oprem=1&wt=y"
}
if (document.search.searchmenu[36].selected) {
window.self.location.href = "http://encarta.msn.com/find/search.asp?search=" + document.search.searchtext.value + ""
}
if (document.search.searchmenu[37].selected) {
window.self.location.href = "http://lcweb.loc.gov/Harvest/cgi-bin/BrokerQuery.pl.cgi?query=" + document.search.searchtext.value + "&host=lcweb.loc.gov%3A8501&brokerqueryconfig=BrokerLC.cf&caseflag=on&maxresultflag=50&descflag=on&verbose=on"
}
if (document.search.searchmenu[38].selected) {
window.self.location.href = "http://jobsearch.monster.com/jobsearch.asp?cy=US&q=&x=79&y=17" + document.search.searchtext.value + "&x=79&y=17"
}
if (document.search.searchmenu[39].selected) {
window.self.location.href = "http://www.dictionary.com/cgi-bin/dict.pl?term=" + document.search.searchtext.value + ""
}
if (document.search.searchmenu[39].selected) {
window.self.location.href = "http://www.thesaurus.com/cgi-bin/search?config=roget&words=" + document.search.searchtext.value + ""
}
}
// end hiding from older browsers--></SCRIPT>
</P>
<P>
<FORM action="" method=get name=search style="background-color: #FFFFFF">
<P>
<TABLE bgColor=#91ff91 border=1 cellPadding=2 cellSpacing=0 width="504">
<TBODY>
<TR>
<TD align=middle width=247 bgcolor="#F2FDC6">
<P><SELECT name=searchmenu style="FONT-SIZE: 8pt"> <OPTION
selected>Search Engine...<OPTION>Yahoo (Web for most
results)<OPTION>Infoseek (Web for searching within results)<OPTION>AOL
(Web)<OPTION>AltaVista (Web do everything)<OPTION>Ask Jeeves (Web asking
questions)<OPTION>Lycos (Web)<OPTION>GoTo (Web)<OPTION>Excite
(Web)<OPTION>Netscape (Web)<OPTION>HotBot (Web)<OPTION>Snap
(Web)<OPTION>MSN (Web)<OPTION>Northern Light (Web)<OPTION>Google
(Web)<OPTION>MetaCrawler (Web search all sites)<OPTION>Magellan
(Web)<OPTION>WebCrawler (Web)<OPTION>Direct Hit (Web)<OPTION>SavySearch
(Web)<OPTION>Yahooligans (Kids.com)<OPTION>News (CNN.com)<OPTION>Local
(Yahoo.com)<OPTION>StockQuotes (Go.com)<OPTION>Sports
(ESPN.com)<OPTION>Weather (Yahoo.com)<OPTION>MP3
(AudioFind.com)<OPTION>Movie Showtimes (Altavista.com)<OPTION>Downloads
(CNet.com)<OPTION>Reasearch Law (FindLaw.com)<OPTION>Auctions
(EBay.com)<OPTION>Toys (EToys.com)<OPTION>Shopping
(Shopping.com)<OPTION>Images (Altavista.com)<OPTION>Audio
(Altavista.com)<OPTION>Video
(Altavista.com)<OPTION>LibraryOfCongress<OPTION>Encyclopedia
(Encarta.com)<OPTION>JobSearch (Monster.com<OPTION>Dictionary
(Dictionary.com)<OPTION>Thesaurus (Thesaurus.com)</OPTION></SELECT></P></TD>
<TD align=middle width="279" bgcolor="#F2FDC6">
<P><INPUT name=searchtext size=30></P></TD>
<TD align=middle width="55" bgcolor="#F2FDC6">
<P><BUTTON onclick=searchengine()
style="FONT-SIZE: 8pt; HEIGHT: 22px; WIDTH: 50px">Search!</BUTTON></P></TD></TR></TBODY></TABLE></FORM></BODY></HTML>
باحث سريع في ست شركات
بحث
<script language="JavaScript">
<!--
current_site = "Yahoo"
var set_def = false
function fetch() {
if (set_def == true) {
set_default = "t"
}else{
set_default = ""
}
tmp = document.SearchForm.Search.value;
stmp = "";
for (i=0 ; i <= tmp.length ; i++) {
if (tmp.charAt(i) == " ") {
stmp = stmp + "+";
} else {
stmp = stmp + tmp.charAt(i);
}
}
if (current_site == "Yahoo") {
top.location.href = "http://search.yahoo.com/bin/search?p=" + document.SearchForm.Search.value
}
if (current_site == "AltaVista") {
top.location.href = "http://altavista.digital.com/cgi-bin/query?pg=q&what=web&fmt=.&q=" + document.SearchForm.Search.value
}
if (current_site == "Lycos") {
top.location.href = "http://www.lycos.com/cgi-bin/pursuit?adv=%26adv%3B&cat=lycos&matchmode=and&query=" + document.SearchForm.Search.value + "&x=35&y=2"
}
if (current_site == "Excite") {
top.location.href = "http://www.excite.com/search.gw?c=web&search=" + document.SearchForm.Search.value + "&trace=a&x=31&y=20"
}
if (current_site == "Infoseek") {
top.location.href = "http://www.infoseek.com/Titles?qt=" + document.SearchForm.Search.value + "&col=WW&sv=IS&lk=noframes&nh=10"
}
if (current_site == "HotBot") {
top.location.href = "http://www.hotbot.com/?SW=web&SM=MC&MT=" + document.SearchForm.Search.value + "&DC=10&DE=2&RG=NA&_v=2&act.search.x=87&act.search.y=9"
}
return false;
}
function toggle_setdef() {
set_def = !(set_def);
}
function setsite(sitenow) {
current_site = sitenow;
}
// --></script>
<!-- A1 -->
<center><h1>Multiple Search Engines</h1></center>
<form method="GET" name="SearchForm" onsubmit="return fetch()">
<center><font size="-1">Yahoo</font><input type="radio" name="SITE" value="Yahoo" checked onclick="setsite('Yahoo')"> <font size="-1">AltaVista</font><input type="radio" name="SITE" value="AltaVista" onclick="setsite('AltaVista')"> <font size="-1">Lycos</font><input type="radio" name="SITE" value="Lycos" onclick="setsite('Lycos')"> <font size="-1">Excite</font><input type="radio" name="SITE" value="Excite" onclick="setsite('Excite')"> <font size="-1">Infoseek</font><input type="radio" name="SITE" value="Infoseek" onclick="setsite('Infoseek')"> <font size="-1">Hotbot</font><input type="radio" name="SITE" value="HotBot" onclick="setsite('HotBot')"></center>
<br>
<center><input type="Text" name="Search" size=30></center>
<br>
<br>
<center><input type="Submit" name="Submit"></center></form><hr>
<!-- -->
باحث رائع
<!-- This script has been in the http://www.javascripts.com Javascript Public Library! -->
<!-- Note that though this material may have been in a public depository, certain author copyright restrictions may apply. -->
<IMG SRC="http://service.bfast.com/bfast/serve?bfmid=253985&bfsiteid=14319748&bfpage=search8" BORDER="0" WIDTH="1" HEIGHT="1" NOSAVE >
<FORM ACTION="http://service.bfast.com/bfast/click" >
<INPUT TYPE="hidden" NAME="bfsiteid" VALUE="14319748" >
<INPUT TYPE="hidden" NAME="bfpage" VALUE="search8">
<INPUT TYPE="hidden" NAME="bfmid" VALUE="253985" >
<table cellspacing="0" cellpadding="0" border="0" width="375" height="60">
<tr><td rowspan="4"><img src="http://goto.com/images-affiliates/befree/logo.gif" width="89" height="60" border="0" alt="GoTo.com"></td><td rowspan="4" bgcolor="#ffff33"><img src="http://goto.com/images-affiliates/befree/clear.gif" width="1" height="60" alt="border"></td> <td colspan="2"><center><img src="http://goto.com/images-affiliates/befree/topper.gif" width="5" height="16" border="0" alt="border"><img src="http://goto.com/images-affiliates/befree/top.gif" width="254" height="16" border="0" alt="border"><img src="http://goto.com/images-affiliates/375x60/topper.gif" width="5" height="16" alt="border" border="0"></center></td><td rowspan="4" bgcolor="#aa6600"><img src="http://goto.com/images-affiliates/befree/clear.gif" width="1" height="60" alt="border"></td><td rowspan="4"><a href="http://www.goto.com/d/affiliate/p/befree/?Promo=befree_refer"><img src="http://goto.com/images-affiliates/befree/makeDollars2.gif" width="28" height="60" border="0" alt="Make Money with GoTo"></a></td></tr>
<tr><td colspan="2" bgcolor="#ffff33"><img src="http://goto.com/images-affiliates/befree/clear.gif" alt="border" width="154" height="1" border="0"></td>
</tr><tr><td bgcolor="#ffcc00" align="right" valign="middle" height="42"><input size="25" name="Keywords"></td><td bgcolor="#ffcc00"><img src="http://goto.com/images-affiliates/befree/clear.gif" alt="border" width="6" height="1" border="0"><input type=image name=Submit src="http://goto.com/images-affiliates/befree/arrow.gif" alt="Find It!" width=23 border=0 height=23><img src="http://goto.com/images-affiliates/shared/cl.gif" width="2" height="1" alt="border" ></td></tr><tr><td colspan="2" bgcolor="#aa6600"><img src="http://goto.com/images-affiliates/befree/clear.gif" alt="border" width="154" height="1" border="0"></td>
</tr>
</table>
</FORM>
<!--Adding this Goto.com Search Box to your Web site will not result
in payment to you. If you wish to add a Goto.com Search Box to your
Web site that will generate revenue then sign up at
http://www.goto.com/d/affiliate/p/befree/?Promo=befreemaster0018113471
-->
باحث جميل
<IMG SRC="http://service.bfast.com/bfast/serve?
bfmid=5960107&siteid=29375806&bfpage=hotbot_big" BORDER="0" WIDTH="1"
HEIGHT="1" NOSAVE >
<FORM ACTION="http://service.bfast.com/bfast/click" >
<INPUT TYPE="hidden" NAME="siteid" VALUE="29375806" >
<INPUT TYPE="hidden" NAME="bfpage" VALUE="hotbot_big">
<INPUT TYPE="hidden" NAME="bfmid" VALUE="5960107" >
<TABLE WIDTH=468 height=60 BGCOLOR="#330099" BORDER=0 CELLSPACING=0
CELLPADDING=1>
<TR><td valign=top><TABLE WIDTH=467 BGCOLOR="#330099" BORDER=0
CELLSPACING=0 CELLPADDING=0>
<TR><TD align=left BGCOLOR="#FFFFFF"><IMG
SRC="http://lygo.com/ly/a/h/hotbot_logo.gif" BORDER=0
ALT="HotBot"></td><TD BGCOLOR="#FFFFFF" valign=top>
<TABLE BGCOLOR="#FFFFFF" width= 100 BORDER=0 CELLSPACING=0
cellpadding=2>
<TR><TD BGCOLOR="#FFFFFF" align=center><FONT SIZE="-2"
FACE="verdana"><B>Search the Web:</B></font></TD></tr><tr><TD
ALIGN=CENTER bgcolor="#FF0000">
<CENTER><FONT FACE="VERDANA,HELVETICA,ARIAL" COLOR="#000000" SIZE="-
1">
<INPUT type=text NAME="MT" SIZE=12 VALUE="" MAXLENGTH=100></font>
</CENTER><FONT FACE="VERDANA,HELVETICA,ARIAL" COLOR="#000000" SIZE="-
1"></FONT></TD></TR>
</TABLE></TD><TD BGCOLOR="#330099">
<CENTER><INPUT TYPE=image
src="http://lygo.com/ly/a/h/hotbot_searchbutton.gif" BORDER=0
ALT="Search"></CENTER>
</TD></TR></TABLE>
</TD></TR></TABLE>
</FOR
باحث
<FORM ACTION="http://service.bfast.com/bfast/click" >
<INPUT TYPE="hidden" NAME="siteid" VALUE="29441281" >
<INPUT TYPE="hidden" NAME="bfpage" VALUE="search_lg">
<INPUT TYPE="hidden" NAME="bfmid" VALUE="22218516" >
<input type=hidden name=user value=befree>
<input type=hidden name=pg value=q>
<table width=468 border=0 cellspacing=0 cellpadding=3 bgcolor=White>
<tr>
<td height=60 rowspan=2 valign=top>
<a href="http://service.bfast.com/bfast/click?
bfmid=22218516&siteid=29441281&bfpage=homepage" target="_top">
<td>
<th><font face="Arial,Helvetica,sans-serif" size=2
color=Black>Search ALTA VISTA:</font></th>
<td width="100%"><input type=text name=q size=19
maxlength=800> <SELECT NAME=kl>
<OPTION VALUE=XX SELECTED>any language <OPTION
VALUE=en>English<OPTION VALUE=zh>Chinese<OPTION VALUE=cs>Czech<OPTION
VALUE=da>Danish<OPTION VALUE=nl>Dutch<OPTION VALUE=et>Estonian<OPTION
VALUE=fi>Finnish<OPTION VALUE=fr>French<OPTION VALUE=de>German<OPTION
VALUE=el>Greek<OPTION VALUE=he>Hebrew<OPTION
VALUE=hu>Hungarian<OPTION VALUE=is>Icelandic<OPTION
VALUE=it>Italian<OPTION VALUE=ja>Japanese<OPTION
VALUE=ko>Korean<OPTION VALUE=lv>Latvian<OPTION
VALUE=lt>Lithuanian<OPTION VALUE=no>Norwegian<OPTION
VALUE=pl>Polish<OPTION VALUE=pt>Portuguese<OPTION
VALUE=ro>Romanian<OPTION VALUE=ru>Russian<OPTION
VALUE=es>Spanish<OPTION VALUE=sv>Swedish</SELECT></td></tr>
<tr><td> </td>
<td align=right><input type=image name=search
src="http://av.com/srchbox/search.gif" alt=Search hspace=5
border=0></td></tr></table></form>
<IMG SRC="http://service.bfast.com/bfast/serve?
bfmid=22218516&siteid=29441281&bfpage=wsearch_l1" BORDER="0"
WIDTH="1" HEIGHT="1" NOSAVE >
<br>
باحث جداً جداً رائع
<script language="JavaScript">
<!--
//
// Script by Jari Aarniala [www.mbnet.fi/~foo -- foo@mbnet.fi]
//
// This script makes it easy to choose with which search engine
// you`d like to search the net. You may use this if you keep this
// text here...
//
function startSearch(){
searchString = document.searchForm.searchText.value;
if(searchString != ""){
searchEngine = document.searchForm.whichEngine.selectedIndex + 1;
finalSearchString = "";
if(searchEngine == 1){
finalSearchString = "http://www.altavista.digital.com/cgi-bin/query?pg=q&what=web&fmt=.&q=" + searchString;
}
if(searchEngine == 2){
finalSearchString = "http://av.yahoo.com/bin/query?p=" + searchString + "&hc=0&hs=0";
}
if(searchEngine == 3){
finalSearchString = "http://www.excite.com/search.gw?trace=a&search=" + searchString;
}
if(searchEngine == 4){
finalSearchString = "http://www.hotbot.com/?SW=web&SM=MC&MT=" + searchString + "&DC=10&DE=2&RG=NA&_v=2&act.search.x=89&act.search.y=7";
}
if(searchEngine == 5){
finalSearchString = "http://www.infoseek.com/Titles?qt=" + searchString + "&col=WW&sv=IS&lk=noframes&nh=10";
}
if(searchEngine == 6){
finalSearchString = "http://www.lycos.com/cgi-bin/pursuit?adv=%26adv%3B&cat=lycos&matchmode=and&query=" + searchString + "&x=45&y=11";
}
if(searchEngine == 7){
finalSearchString = "http://netfind.aol.com/search.gw?search=" + searchString + "&c=web&lk=excite_netfind_us&src=1";
}
location.href = finalSearchString;
}
}
// -->
</script>
<basefont face="Verdana, Arial, sans-serif">
<form name="searchForm">
<table border="1" cellpadding=0 cellspacing=0 bgcolor=#C6C68C bordercolorlight="#333300" bordercolordark="#EFEFDE">
<tr>
<td align="center"><font color="#333300" face="Tahoma" size="2">ابحث عن</font>
<td align="center"><font color="#333300" face="Tahoma" size="2">ابحث من</font>
<td align="center">
<tr>
<td><input style="background: dddddd" name="searchText" type="text">
<td>
<select style="background: dddddd" name="whichEngine">
<option selected>Altavista
<option>Yahoo!
<option>Excite
<option>Hotbot
<option>Infoseek
<option>Lycos
<option>AOL Netfind
</select>
<td><input type="button" value="ابحث" onClick="startSearch()" style="background-color: #333300; color: #FFFFFF">
</table>
</form>
<font size=1> <a href="http://www.mbnet.fi/~foo/"></a> <a href="mailto:foo@mbnet.fi"></a>
باحث متقدم
<html>
<head>
<title>باحث متقدم</title>
<meta NAME="GENERATOR" CONTENT="Claris Home Page 3.0 30 Day Trial">
<X-CLARIS-WINDOW TOP="0" BOTTOM="315" LEFT="0" RIGHT="628">
<X-CLARIS-TAGVIEW MODE="minimal">
<meta HTTP-EQUIV="EXPIRES" VALUE="0">
<style><!--
A:link{color:navy;font-family:geneva,system};A:visited{color:navy;font-family:geneva,system};A:hover{color:magenta;font-family:geneva,system;text-decoration:none;cursor:help;background-color:c0c0c0};A:active{color:white;font-family:geneva,system;cursor:wait};Body{margin:0 0 9 0};
//--></style>
<script language="javascript"><!--
var MAX_ENGINES=30;var EHGO_STRING="e+h+g";function MakeArray(n) {
for (var i = 1; i <= n; i++) {
this[i] = 0;
}
this.maxlen=n;this.len=0;return this;
}
var engs=new MakeArray(MAX_ENGINES);function find_substring(needle,haystack) {
var i,needlen=needle.length, haylen=haystack.length;for (i=0;i<=haylen-needlen;i++) {
if (needle==haystack.substring(i,i+needlen))
return i;
}
return false;
}
function Engine(name,opts,home,search) {
var ehgo=find_substring(EHGO_STRING,search);this.name=name;this.opts=opts;this.home=home;this.pre_ehgo=search.substring(0,ehgo);this.post_ehgo=search.substring(ehgo+EHGO_STRING.length,search.length);
}
function Add(name, opts, home, search) {
engs.len++;
if (engs.len<=engs.maxlen) {
engs[engs.len]=new Engine(name,opts,home,search)
}
else {
alert("800go.com")
}
}
function DisplayForm() {
document.writeln('<CENTER><FORM Name=EhuGoform OnSubmit="HandleForm(this); return false">');document.writeln('<INPUT size=26 name="query">');document.writeln(' <SELECT name="service">');
for (i=1;i<=engs.len; i++) {
document.writeln("<OPTION "+engs[i].opts+">"+engs[i].name);
}
document.writeln('</SELECT> <input type=submit value=" بحث "></FORM>');
document.writeln('</font></CENTER>');query = self.location.search;if (query != null && query !='') {
if(query.length>1) {
query=query.substring(1, query.length);document.EhuGoform.query.value=query
}
}
document.EhuGoform.query.focus()
}
function HandleForm(form) {
var i, newq="",oldq=form.query.value;for(i=0;i<oldq.length;i++) {
var thischar=oldq.charAt(i);if (thischar != ' ')
newq += thischar;else if (lastchar != ' ')
newq += '+';lastchar=thischar;
}
var eng=engs[1+form.service.selectedIndex];parent.parent.location.href=newq ? eng.pre_ehgo + newq + eng.post_ehgo : eng.home;document.EhuGoform.query.focus()
}
Add("----- بحــث -----","selected","http://800go.com/help.htm","http://search.megaspider.com/search1.html?e+h+g" );Add("alta vista","","http://800go.com/help.htm","http://www.altavista.com/cgi-bin/query?q=e+h+g&text=yes" );
Add("info seek","","http://800go.com/help.htm","http://www.infoseek.com/Titles?qt=e+h+g" );Add("yahoo","","http://800go.com/help.htm","http://search.yahoo.com/bin/search?p=e+h+g" );
Add("excite","","help.htm","http://search.excite.com/search.gw?search=e+h+g" );Add("mega spider","","help.htm","http://search.megaspider.com/search1.html?e+h+g" );
Add("deja news", "", "help.htm", "http://www.dejanews.com/dnquery.xp?QRY=e+h+g" );Add("web crawler","","help.htm","http://www.webcrawler.com/cgi-bin/WebQuery?searchText=e+h+g" );
Add("northern light","","help.htm","http://www.northernlight.com/nlquery.fcg?qr=e+h+g" );
Add("news index","","help.htm","http://www.newsindex.com/cgi-bin/process.cgi?query=e+h+g" );Add("meta crawler","","help.htm","http://search.go2net.com/crawler?general=e+h+g" );
Add("ask jeeves","","help.htm","http://www.askjeeves.com/AskJeeves.asp?ask=e+h+g&spellcheck=on" );
Add("husky search","","help.htm","http://huskysearch.cs.washington.edu/cgi-bin/nph-metaquery-beta.p?logic=2&category=www&general=e+h+g" );
Add("", "","help.htm","help.htm" );
Add("----- GO -----","","help.htm","http://www.e+h+g.com" );
Add(".com","","help.htm","http://www.e+h+g.com" );Add(".net","","help.htm","http://www.e+h+g.net" );Add(".org","","help.htm","http://www.e+h+g.org" );Add(".edu","","help.htm","http://www.e+h+g.edu" );Add(".gov","","help.htm","http://www.e+h+g.gov" );Add("url","","help.htm","http://e+h+g" );Add("", "","help.htm","help.htm" );
Add("----- FIND -----", "", "help.htm", "help.htm" );
Add("Weather","","help.htm","http://www.weather.com/weather/us/zips/e+h+g.html" );Add("Maps","","help.htm","http://www.mapblast.com/mapblast/blast.hm?AD3=e+h+g&IC=::8&IC:=800go.com" );
Add("Stock","","help.htm","http://www.stocksite.com/business-magic/research/?symbol=e+h+g" );Add("Movies","","help.htm","http://www.dinnerandamovie.com/?zip=e+h+g" );
Add("Software","","help.htm","http://www.filemine.com/searchResults?queryText=e+h+g&Action=FilterSearch&Filter=fmfilter.hts" );Add("Horoscope","","http://www.excite.com/horoscopes/#800","http://www.excite.com/horoscopes/#e+h+g" );
//--></script>
</head>
<body BGCOLOR="#FFFFFF" VLINK="#0000FF">
<p> </p>
<script LANGUAGE="javascript"><!--
DisplayForm();document.writeln('<p align="left"><font face="Geneva,Arial" size="1"><a href="help.htm"></a></font></p>');//--></script>
<noscript>
<form ACTION="http://search.go2net.com/crawler" METHOD="GET">
<p><input TYPE="text" NAME="general" VALUE SIZE="30"> <input TYPE="submit"
NAME="Submit" VALUE=" بحث "> </p>
</form>
</body>
</html>
تقويم ميلاديي
<table>
<td width="55%" align="right" valign="top" colspan="3" bgcolor="#008000">
<p align="center"> <font face="Monotype Koufi" color="#FFFFFF"><!--webbot bot="HTMLMarkup"
startspan --> <p align="center"><b> <script>
<!-- START HIDE
print1="";
print2="";
print3="";
today = new Date();
weekday = today.getDay();
if (weekday == 6) print1='السبت';
if (weekday == 0) print1='الأحد';
if (weekday == 1) print1='الاثنين';
if (weekday == 2) print1='الثلاثاء';
if (weekday == 3) print1='الاربعاء';
if (weekday == 4) print1='الخميس';
if (weekday == 5) print1='الجمعة';
month = today.getMonth();
if (month == 0) print2='يناير';
if (month == 1) print2='فبراير';
if (month == 2) print2='مارس';
if (month == 3) print2='إبريل';
if (month == 4) print2='مايو';
if (month == 5) print2='يونيو';
if (month == 6) print2='يوليو';
if (month == 7) print2='اغسطس';
if (month == 8) print2='سبتمبر';
if (month == 9) print2='اكتوبر';
if (month == 10) print2='نوفمبر';
if (month == 11) print2='ديسمبر';
date = today.getDate();
year=today.getYear();
document.write (print1,',', date, ' ',print2,', ',year);
// STOP HIDE -->
</script>
</font></p>
</td>
</tr>
</body>
</html>
<!--webbot bot="HTMLMarkup" endspan --> </font>
</table>
ارتباط شريط المهام
<A HREF="" TARGET="_New" onMouseOver="window.status='لتحميل برامجك المفضلة';return true" onMouseOut="window.status='';return true">صفحة البرامج</A>
لقتل
البنر الموجود في موقع
www.geocities.com . ضع
الكود في بدياة <html/>
<NOSCRIPT>
<!--
<!--geoguide-->
-->
</NOSCRIPT>
<NOSCRIPT>
<NOSCRIPT>
<NOSCRIPT>
<script>
</
<!-- End Copying -->
لقتل بانر ترايبود
tripod اضف التالي لجميع الصفحات
<SCRIPT LANGUAGE="JavaScript">
var temppopup = window.open( "", "tempWin", 'toolbar=0,location=0,directories=0,status=0,menubar=0,
scrollbars=0,resizable=0,width=1,height=1');
window.open = temppopup.open;
temppopup.close();
var popup = window.open("", "TripodPopup",'toolbar=0,
location=0,directories=0,status=0,
menubar=0,scrollbars=0,resizable=0,width=1,height=1');
popup.close();
</SCRIPT>
يقتل
الأعلاانات التي تأتي على شكل نافذة خارجية ضع هذا الكود فينهية<body>
<Script Language='Javascript'>
<!--
eval(unescape('%66%75%6E%63%74%69%6F%6E%20%6F%70%65%6E%20%28%29%20%7B%72%65%74%75%72%6E%20%74%72%75%65%3B%7D'));
//-->
</Script>
جالب الاخبار من البي بي
سي.. على شكل صفحة وعناوين موجزه مدعمة بالصور
<html>
<head>
<meta http-equiv="Content-Language" content="ar-sa">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1256">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>نشــرة الأخـــبار</title>
</head>
<body background=bg_game.gif>
<script language="JavaScript">
<!--
function stopError() {
return true;
}
window.onerror = stopError;
// -->
</script>
<div align="center">
<center>
<table border="0" width="600" cellspacing="0" cellpadding="0" style="font-size: 10pt; font-family: Tahoma; font-weight: bold; border-left: 2 solid #999965; border-right: 2 solid #999965; border-bottom: 1 solid #999965" bgcolor="#999965">
<tr>
<td width="245"><div id=Clock align=left DIR="RTL" style="font-family: tahoma; font-size: 10pt; color: #000000; width: 223; height: 19"> </div>
<script>
function tick() {
var hours, minutes, seconds, ap;
var intHours, intMinutes, intSeconds;
var today;
today = new Date();
intHours = today.getHours();
intMinutes = today.getMinutes();
intSeconds = today.getSeconds();
if (intHours == 0) {
hours = "12:";
ap = "بعد متصف الليل";
} else if (intHours < 12) {
hours = intHours+":";
ap = "صباحا";
} else if (intHours == 12) {
hours = "12:";
ap = "ظهرا";
} else {
intHours = intHours - 12
hours = intHours + ":";
ap = "مساءا";
}
if (intMinutes < 10) {
minutes = "0"+intMinutes+":";
} else {
minutes = intMinutes+":";
}
if (intSeconds < 10) {
seconds = "0"+intSeconds+" ";
} else {
seconds = intSeconds+" ";
}
timeString = hours+minutes+seconds+ap;
Clock.innerHTML = timeString;
window.setTimeout("tick();", 100);
}
window.onload = tick;
</script></td>
</center><p align="center">
<td width="130" valign="middle">
<p align="right">B B C أخـــــبـــــار
</td>
<td width="251" valign="middle" style="color: #000000; font-size: 10pt; font-family: Tahoma; font-weight: bold">
<p align="right">
<script language="javascript">
<!--
;today = new Date(); date = today.getDate(); weekday = today.getDay();if (weekday == 6) document.write('السبت');if (weekday == 0) document.write('الأحد');if (weekday == 1) document.write('الإثنين');if (weekday == 2) document.write('الثلاثاء');if (weekday == 3) document.write('الأربعاء');if (weekday == 4) document.write('الخميس');if (weekday == 5) document.write('الجمعة');document.write(' ', date,' '); month = today.getMonth();if (month == 0) document.write('/ 1 /');if (month == 1) document.write('/ 2 /');if (month == 2) document.write('/ 3 /');if (month == 3) document.write('/ 4 /');if (month == 4) document.write('/ 5 /');if (month == 5) document.write('/ 6 /');if (month == 6) document.write('/ 7 /');if (month == 7) document.write('/ 8 /');if (month == 8) document.write('/ 9 /');if (month == 9) document.write('/ 10 /');if (month == 10) document.write('/ 11 /');if (month == 11) document.write('/ 12 /');year=today.getYear();document.write (' ', year);// -->
</script>
</table>
</div>
<p align="center"><!--webbot bot="HTMLMarkup" startspan --> <script>bgcolor="white";function jnewsitem(title, url, description, image, imagename) { document.writeln( "<tr><td><hr noshade size='0'><a href='" , url , "'>" ); if(image!="") document.writeln( "<img align='left' border='0' alt='" , imagename , "' src='" , image , "'>" ); document.writeln( "<b>" , title , "</b>" ); document.writeln( "</a>" ); document.writeln( "<br>" , description ); document.writeln( "</td></tr>" );}</script><table dir="rtl" border="0" cellpadding="0" cellspacing="0" width="100%"> <script src="http://www.rayed.com/bbcjs.php3"> </script> </table>
<!--webbot bot="HTMLMarkup" endspan -->
</p>
</body>
</html>
BBC نافذة تعرض أخبار
<td bgColor="#0000ff" height="39" width="49%">
<p align="center"><font color="#ffffff"><b>اخر الاخبار من
البي بي سي</b></font></p>
<table border="1" height="82" width="100%">
<tbody>
<tr>
<td height="76" width="100%"><IFRAME height="100%"
src="http://www.raay.net\news1.htm" width="100%">
</IFRAME>
<p> </p>
</td>
</tr>
</tbody>
</table>
</td>
ألعاب نارية
<layer name="a0" left=10 top=10 visibility=show bgcolor="#ffffff" clip="0,0,1,1"></layer>
<layer name="a1" left=10 top=10 visibility=show bgcolor="#fff000" clip="0,0,1,1"></layer>
<layer name="a2" left=10 top=10 visibility=show bgcolor="#ffa000" clip="0,0,1,1"></layer>
<layer name="a3" left=10 top=10 visibility=show bgcolor="#ff00ff" clip="0,0,1,1"></layer>
<layer name="a4" left=10 top=10 visibility=show bgcolor="#00ff00" clip="0,0,1,1"></layer>
<layer name="a5" left=10 top=10 visibility=show bgcolor="#ff00ff" clip="0,0,1,1"></layer>
<layer name="a6" left=10 top=10 visibility=show bgcolor="#ff0000" clip="0,0,1,1"></layer>
<layer name="a7" left=10 top=10 visibility=show bgcolor="#ffffff" clip="0,0,1,1"></layer>
<layer name="a8" left=10 top=10 visibility=show bgcolor="#fff000" clip="0,0,1,1"></layer>
<layer name="a9" left=10 top=10 visibility=show bgcolor="#ffa000" clip="0,0,1,1"></layer>
<layer name="a10" left=10 top=10 visibility=show bgcolor="#ff00ff" clip="0,0,1,1"></layer>
<layer name="a11" left=10 top=10 visibility=show bgcolor="#00ff00" clip="0,0,2,2"></layer>
<layer name="a12" left=10 top=10 visibility=show bgcolor="#0000ff" clip="0,0,2,2"></layer>
<layer name="a13" left=10 top=10 visibility=show bgcolor="#ff0000" clip="0,0,2,2"></layer>
<script language="JavaScript">
/*
Document firework script (By Kurt Gregg, kurt.grigg@virgin.net)
Modified granted to Dynamic Drive to feature script in archive
For full source and 100's more DHTML scripts, visit http://dynamicdrive.com
*/
if (document.all)
with(document){
write('<div id="starsDiv" style="position:absolute;top:0px;left:0px">')
write('<div style="position:relative;width:2px;height:2px;background:#ffffff;font-size:2px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#fff000;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#ffa000;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#ff00ff;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#00ff00;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#0000ff;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#FF0000;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#ffffff;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#fff000;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#ffa000;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#ff00ff;font-size:1px"></div>')
write('<div style="position:relative;width:2px;height:2px;background:#ff00ff;font-size:2px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#0000ff;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#FF0000;font-size:1px"></div>')
write('</div>')
}
var Clrs=new Array(9)
Clrs[0]='ff0000';
Clrs[1]='00ff00';
Clrs[2]='000aff';
Clrs[3]='ff00ff';
Clrs[4]='ffa500';
Clrs[5]='ffff00';
Clrs[6]='00ff00';
Clrs[7]='ffffff';
Clrs[8]='fffff0';
var sClrs=new Array(5)
sClrs[0]='ffa500';
sClrs[1]='55ff66';
sClrs[2]='AC9DFC';
sClrs[3]='fff000';
sClrs[4]='fffff0';
var yBase;
var xBase;
var step;
var currStep = 0;
var Xpos = 1;
var Ypos = 1;
var initialStarColor='ffa000';
var Mtop=250;
var Mleft=250;
function Fireworks() {
if (document.all)
{
yBase = window.document.body.offsetHeight/3;
xBase = window.document.body.offsetWidth/8;
}
else if (document.layers)
{
yBase = window.innerHeight/3;
xBase = window.innerWidth/8;
}
if (document.all)
{
step=5;
for ( i = 0 ; i < starsDiv.all.length ; i++ )
{
for (ai=0; ai < Clrs.length; ai++)
{
var c=Math.round(Math.random()*[ai]);
}
if (currStep < 90)
starsDiv.all[i].style.background=initialStarColor;
if (currStep > 90)
starsDiv.all[i].style.background=Clrs[c];
starsDiv.all[i].style.top = Mtop + yBase*Math.sin((currStep+i*5)/3)*Math.sin(550+currStep/100)
starsDiv.all[i].style.left = Mleft + yBase*Math.cos((currStep+i*5)/3)*Math.sin(550+currStep/100)
}
}
else if (document.layers)
{
step = 5;
for ( j = 0 ; j < 14 ; j++ ) //number of NS layers!
{
var templayer="a"+j
for (ai=0; ai < Clrs.length; ai++)
{
var c=Math.round(Math.random()*[ai]);
}
if (currStep < 90)
document.layers[templayer].bgColor=initialStarColor;
if (currStep > 90)
document.layers[templayer].bgColor=Clrs[c];
document.layers[templayer].top = Mtop + yBase*Math.sin((currStep+j*5)/3)*Math.sin(550+currStep/100)
document.layers[templayer].left = Mleft + yBase*Math.cos((currStep+j*5)/3)*Math.sin(550+currStep/100)
}
}
currStep+= step;
//window.status=currStep;
T=setTimeout("Fireworks()",5);
if (currStep==220)
{
currStep=-10;
for (n=0; n < sClrs.length; n++)
{
var k=Math.round(Math.random()*n);
}
initialStarColor=sClrs[k];
if (document.all)
{
Dtop=window.document.body.clientHeight-250;
Dleft=xBase*3.5;
Mtop=Math.round(Math.random()*Dtop);
Mleft=Math.round(Math.random()*Dleft);
document.all.starsDiv.style.top=Mtop+document.body.scrollTop;
document.all.starsDiv.style.left=Mleft+document.body.scrollLeft;
}
else if (document.layers)
{
Dleft=window.innerWidth-100;
Dtop=window.innerHeight-100;
Mtop=Math.round(Math.random()*Dtop+window.pageYOffset);
Mleft=Math.round(Math.random()*Dleft+window.pageXOffset);
document.layers[templayer].top=Mtop;
document.layers[templayer].left=Mleft;
}
if ((Mtop < 20) || (Mleft < 20))
{
Mtop+=90;
Mleft+=90;
}
}
}
if (document.all||document.layers)
Fireworks();
</script>
بانر كتابي ورابط
<applet code=Banner3.class width=550 height=38>
<param name=cattext0 value="WWW">
<param name=catbgcolor0 value="0,255,0">
<param name=catbgcolor1 value="0,255,0">
<param name=catbgcolor2 value="0,255,0">
<param name=cattextcolor0 value="0,0,255">
<param name=cattextcolor1 value="0,0,255">
<param name=cattextcolor2 value="0,0,255">
<param name=cattext1 value="WWW.">
<param name=cattext2 value="WWW.">
<param name=cattext3 value="WWW.">
<param name=msgtext0 value="Click here for Website Abstraction!">
<param name=TextURL0 value="http://www.wsabstract.com">
<param name=msgtext1 value="Click here for CNN">
<param name=TextURL1 value="http://www.cnn.com">
<param name=msgtext2 value="Click here for author's homepage">
<param name=TextURL2 value="http://www.javagods.com">
<param name=MessageNo value="3">
<param name=catwidth value="150">
<param name=font value="Garamond">
<param name=speed value="25">
<param name=fontsize value="22">
<param name=pauseDelay value="3000">
<param name=fontstyle value="Bold">
<param name=msgbgcolor value="0,0,0">
<param name=linkcolor value="0,0,255">
<param name=msgtextcolor value="255,200,0">
<param name=dist value="1">
<param name=direction value="TopBottom">
<param name=align value="Center">
</applet>
<p align="center"><font face="arial" size="-2">Free Java applets provided by</font><br>
<font face="arial, helvetica" size="-2"><a href="http://wsabstract.com">Website
Abstraction</a></font></p>
باحث في نفس الصفحة
<!-- TWO STEPS TO INSTALL FIND IN PAGE:
1. Copy the coding into the HEAD of your HTML document
2. Add the last code into the BODY of your HTML document -->
<!-- STEP ONE: Paste this code into the HEAD of your HTML document -->
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- The JavaScript Source!! http://www.hey.to/spcialman -->
<!-- Begin
var NS4 = (document.layers);
var IE4 = (document.all);
var win = this;
var n = 0;
function findInPage(str) {
var txt, i, found;
if (str == "")
return false;
if (NS4) {
if (!win.find(str))
while(win.find(str, false, true))
n++;
else
n++;
if (n == 0) alert(str + " was not found on this page.");
}
if (IE4) {
txt = win.document.body.createTextRange();
for (i = 0; i <= n && (found = txt.findText(str)) != false; i++) {
txt.moveStart("character", 1);
txt.moveEnd("textedit");
}
if (found) {
txt.moveStart("character", -1);
txt.findText(str);
txt.select();
txt.scrollIntoView();
n++;
}
else {
if (n > 0) {
n = 0;
findInPage(str);
}
else
alert(str + " was not found on this page.");
}
}
return false;
}
// End -->
</script>
</HEAD>
<!-- STEP TWO: Copy this code into the BODY of your HTML document -->
<BODY>
<form name=search onSubmit="return findInPage(this.string.value);">
Find in Page
<input name=string type=text size=15 onChange="n = 0;">
</form>
<p><center>
<font face="arial, helvetica" size="-2">Free JavaScripts provided<br>
by <a href="http://www.hey.to/spcialman">SpcialMan</a></font>
</center><p>
<!-- Script Size: 1.54 KB -->
ساعة صغيرة سوداء
<!-- This script has been in the http://www.javascripts.com Javascript Public Library! -->
<!-- Note that though this material may have been in a public depository, certain author copyright restrictions may apply. -->
<html>
<head>
<title>JavaClock v2.3 Written by The Transcendent</title>
</head>
<body>
<script language = "javascript">
<!--
<!-- JavaScript Clock v2.3 Written By The Transcendent -->
<!-- Entire script is to be placed wherever you want the clock to be -->
<!-- these are the only variables (9) that you have to change, do not change anything else -->
/* !!!These specifications are supported in both IE and Netscape. You MUST give these variables a value!!! */
var clockwidth = 12 //specify the clock width
var clockvalue = "--- Clock ---" //the text in the clock before the body is completly loaded (needs quotes)
/* !!!!!extra clock looks only available in IE, not supported in netscape!!!! */
var clockfeatures = "yes" // do you want the extra looks? if no, you do not have to change the next 5 variables (must keep quotes around yes/no)
var backcolor = "#000000" //specify background color (needs quotes)
var textcolor = "#eeeeee" //specify text color (needs quotes)
var borderstyle = "solid" //specify the type of border ((in quotes, type "original" for the normal style, regardless of your color and width specs) none,dotted,dashed,solid,double,groove,ridge,inset,outset)
var bordercolor = "#a00000" //specify border color (needs quotes) (type in 0 for the borderwidth if you dont want one)
var borderwidth = 1 //specify border width (a number in pixels, (type in 0 if you dont want one)
var fontfamily = "Arial" //specify font type (needs quotes) (type in 'null' if you dont care)
<!-- ok, everything is taken care of! now just save the page, sit back and enjoy! -->
document.onLoad = setInterval('chngtme()',100)
if (document.all && clockfeatures=="yes") {document.write("<style> #clock { background: "+backcolor+"; color: "+textcolor+((borderstyle!='original')?'; border: '+bordercolor+' '+borderwidth+'px '+borderstyle+';':';')+" font-family: "+fontfamily+";} </style>")}
function chngtme() {
var t=new Date()
var AP=((t.getHours()>=12)?" P.M.":" A.M.")
var timeValue=""+((t.getHours()>12)?t.getHours()-12:(t.getHours()==0)?12:t.getHours())
timeValue+=((t.getMinutes()<10)?":0":":")+t.getMinutes()
timeValue+=((t.getSeconds()<10)?":0":":")+t.getSeconds()
timeValue+=AP
document.clock.face.value=timeValue
}
document.write('<center><form name="clock" Action="#"><input id="clock" TYPE="text" NAME="face" SIZE="'+clockwidth+'" VALUE="'+clockvalue+'"></form></center>')
<!-- End JavaScript Clock v2.1 -->
//-->
</script>
</body>
</html>
<!-- Simba says Roar. -->
ساعة صورة
<applet CODE="PictureClock.class" width="155" height="155">
<param name="Picture" value="oliver2.gif">
<param name="CounterClockwise" value="no">
<param name="ShowSecond" value="yes">
<param name="ShowMark" value="large">
<param name="MarkColor" value="black">
<param name="ShowRoundFrame" value="no">
<param name="RoundFrameWidth" value="1">
<param name="RoundFrameColor" value="black">
<param name="HourHandColor" value="yellow">
<param name="MinuteHandColor" value="green">
<param name="SecondHandColor" value="red">
<param name="BackgroundColor" value="#99cccc">
<param name="LengthHourTail" value="4">
<param name="LengthMinuteTail" value="6">
<param name="LengthSecondtail" value="8">
<param name="HourWaistSize" value="4">
<param name="MinuteWaistSize" value="3">
<param name="SecondWaistSize" value="2">
<param name="CenterDotColor" value="#000000">
<param name="CenterDotRadius" value="2">
<param name="ShowFrame" value="no">
<param name="ClockXOffset" value="34">
<param name="ClockYOffset" value="73">
<param name="ClockRadius" value="20">
</applet>
<p align="center"><font face="arial" size="-2">Free Java applets provided by</font><br>
<font face="arial, helvetica" size="-2"><a href="http://wsabstract.com">Website
Abstraction</a></font></p>
ساعة متحركة في
الأسفل
<!-- This script has been in the http://www.javascripts.com Javascript Public Library! -->
<!-- Note that though this material may have been in a public depository, certain author copyright restrictions may apply. -->
<HTML>
<HEAD>
<style type="text/css">
<!--
.tick2 { font-size: "x-small"}
-->
</style>
<script>
<!--
function show2(){
if (!document.all)
return
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var seconds=Digital.getSeconds()
var dn="AM"
if (hours>12){
dn="PM"
hours=hours-12
}
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
var ctime=hours+":"+minutes+":"+seconds+" "+dn
tick2.innerHTML="<style='font-size:2;color:blue;'>"+ctime+"</style>"
setTimeout("show2()",1000)
}
//-->
</script>
<TITLE>F O R M S</TITLE>
</HEAD>
<BODY BGCOLOR="#000000" TEXT="#7b68ee" link="#7b68ee" vlink="#7b68ee" onLoad="show2()">
<P> <BR><CENTER>انظر الى الساعة فى الجهة اليمنى</CENTER><P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR><P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR><P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR><P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR><P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR> <P> <BR>
<script language="JavaScript">
var IW= 0;
var IH= 0;
var PX= 0;
var PY= 0;
var ZIN= 0;
var us= null;
var IMGW= 50;
var IMGH= 25;
var LSAFETY= 20;
var TSAFETY= 17;
function branding() {
oldIW= IW;
oldIH= IH;
oldPX= PX;
oldPY= PY;
if (navigator.appName == 'Netscape') {
if ((window.innerHeight != oldIH)||(window.innerWidth != oldIW)||(window.pageXOffset != oldPX)||(window.pageYOffset != oldPY))
{
if (us == null)
{
for (i=0; i<document.layers.length; i++)
{
us= document.layers[i];
if (us.id == "Valley")
break;
}
}
if (us != null)
{
us.visibility= "hide";
IH= window.innerHeight;
IW= window.innerWidth;
PX= window.pageXOffset;
PY= window.pageYOffset;
(IH > IMGH) ? us.top= (IH+PY-(IMGH+TSAFETY)) : us.top= 0;
(IW > IMGW) ? us.left= (IW+PX-(IMGW+LSAFETY)) : us.left= 0;
//alert('document.layers.length: ' + document.layers.length);
for (i=0; i<document.layers.length; i++)
{
templay= document.layers[i];
// alert('document.layers[' + i + '].id: ' + document.layers[i].id);
if (templay.zIndex > ZIN)
ZIN= (templay.zIndex + 1);
}
us.zIndex= ZIN;
us.visibility= "show";
}
}
}
else{
if (navigator.appVersion.indexOf("Mac") == -1)
{
if ((document.body.clientHeight != oldIH)||(document.body.clientWidth != oldIW)||(document.body.scrollLeft != oldPX)||(document.body.scrollTop != oldPY)) {
alldivs= document.all.tags("DIV");
if (us == null){
for (i=0; i<alldivs.length; i++)
{
us= alldivs(i);
if (us.id == "Valley")
break;
}
}
if (us != null){
us.style.display= "none";
IH= document.body.clientHeight;
IW= document.body.clientWidth;
PX= document.body.scrollLeft;
PY= document.body.scrollTop;
us.style.top= (IH+PY-(IMGH+TSAFETY)+12);
us.style.left=(IW+PX-(IMGW+LSAFETY)+15);
for (i=0; i<alldivs.length; i++){
templay= alldivs(i);
if (templay.style.zIndex > ZIN)
us.style.zindex= (templay.style.zIndex + 1);
}
us.style.display= "";
}
}
}
}
}
if ((document.all) || (document.layers)){
setInterval("branding()",100);
}
</SCRIPT>
<DIV CLASS="Watermark" ID="Watermark" STYLE="position:absolute;top:1;visibility:hide;" ALIGN="right">
<span id=tick2 class=tick2> </span>
</DIV>
</BODY>
</HTML>
ساعة ملونة
<html>
<head>
<title>Java Script Library -> http://java.tatousek.cz - 00020 Sample</title>
<meta http-equiv="content-type" content="text/html; charset=windows-1250">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<script language="VBScript">
Dim a
Dim min1
Dim hr1
Dim sec1
'Initializes clock and tells it how to behave, when to start animation, etc
Sub window_onload
a = time
min1 = minute(time)
hr1 = hour(time)
if hr1 > 12 then
hr1 = hr1 - 12
end if
sec1 = second(time)
call sgSecondHand.Rotate(0,0,sec1*6 - 90)
call sgMinuteHand.Rotate(0,0,min1*6 - 90)
call sgHourHand.Rotate(0,0,hr1*360/12 - 90)
call seq("Time").Play
end Sub
'Sequencer initilization
Sub Seq_OnInit
Call seq("Time").at(0.000, "SecRot", -1, 1.000, 1)
Call seq("Time").at(60.000, "MinRot", -1, 60.000, 1)
Call seq("Time").at(0.000, "HourRot", -1, 1800.000, 1)
End Sub
'rotates second hand of clock
Sub SecRot
Call sgSecondHand.Rotate(0,0,6)
End Sub
' rotates minute hand of clock
Sub MinRot
Call sgMinuteHand.Rotate(0,0,6)
End Sub
' rotates hour hand of clock
Sub HourRot
Call sgHourHand.Rotate(0,0,15)
End Sub
</script>
<!-- This is the master div, sets over all height, width and positioning-->
<div id="MASTERLAYOUT" STYLE="POSITION:ABSOLUTE;WIDTH:300; HEIGHT:300;TOP:25%;LEFT:25%">
<!-- Div sets positioning of text on clock face, z-index tells it to go in front of background data in master div -->
<div id="divTimeText" STYLE="POSITION:ABSOLUTE; WIDTH:200; HEIGHT:200; TOP:0; LEFT:0;z-index:2">
<br>
<br>
<br>
<p align="center">
<font face="Verdana,Tahoma,Arial" size="5" color="YELLOW">
<BR>
<BR>
</font>
</p>
<!-- Object displays the numbers on the clock face -->
<OBJECT ID="SgNumbers"
CLASSID = "CLSID:369303C2-D7AC-11D0-89D5-00A0C90833E6"
STYLE= "POSITION:ABSOLUTE; WIDTH:215; HEIGHT:200; TOP:0; LEFT:0;Z-INDEX:5">
<PARAM NAME="Line0001" VALUE="SetLineColor(255, 255, 255)">
<PARAM NAME="Line0002" VALUE="SetLineStyle(1)">
<PARAM NAME="Line0003" VALUE="SetFillStyle(1)">
<PARAM NAME="Line0004" VALUE="SetFillColor(255,255,255)">
<PARAM NAME="Line0005" VALUE="SetFont('ARIAL',24,650,0,0,0)">
<PARAM NAME="Line0006" VALUE="Text('1',30,-66,0">
<PARAM NAME="Line0007" VALUE="Text('2',60,-36,0">
<PARAM NAME="Line0008" VALUE="Text('3',70,4,0">
<PARAM NAME="Line0009" VALUE="Text('4',60,44,0">
<PARAM NAME="Line0010" VALUE="Text('5',30,74,0">
<PARAM NAME="Line0011" VALUE="Text('6',-10,89,0">
<PARAM NAME="Line0012" VALUE="Text('7',-50,79,0">
<PARAM NAME="Line0013" VALUE="Text('8',-85,44,0">
<PARAM NAME="Line0014" VALUE="Text('9',-95,4,0">
<PARAM NAME="Line0015" VALUE="Text('10',-85,-36,0">
<PARAM NAME="Line0016" VALUE="Text('11',-60,-61,0">
<PARAM NAME="Line0017" VALUE="Text('12',-20,-76,0">
</OBJECT>
</div>
<!-- Creates the clock face , structured graphic-->
<OBJECT ID="sgBackground"
CLASSID = "CLSID:369303C2-D7AC-11D0-89D5-00A0C90833E6"
STYLE="POSITION:absolute; TOP:0; LEFT:0; WIDTH:200; HEIGHT:200">
<PARAM NAME="Line0001" VALUE="SetLineStyle(5)">
<PARAM NAME="Line0002" VALUE="SetFillStyle(11)">
<PARAM NAME="Line0003" VALUE="SetFillColor(255,0,0,0,0,255)">
<PARAM NAME="Line0004" VALUE="SetGradientFill(0,0,-100,-100,0)">
<PARAM NAME="Line0005" VALUE="Oval(-100,-100,200,200,0)">
</OBJECT>
<div id="divClock" STYLE="POSITION:ABSOLUTE; WIDTH:200; HEIGHT:200; TOP:0; LEFT:0;">
<!-- Object creates second hand for clock, structured graphic -->
<OBJECT ID="sgSecondHand"
CLASSID = "CLSID:369303C2-D7AC-11D0-89D5-00A0C90833E6"
STYLE="POSITION:absolute; TOP:0; LEFT:0; WIDTH:200; HEIGHT:200; Z-INDEX:5">
<PARAM NAME="Line0001" VALUE="SetLineColor(255, 255, 255)">
<PARAM NAME="Line0002" VALUE="SetLineStyle(1)">
<PARAM NAME="Line0003" VALUE="SetFillColor(255,255,255)">
<PARAM NAME="Line0004" VALUE="SetFillStyle(1)">
<PARAM NAME="Line0005" VALUE="Rect(-5,-2,100,4,0)">
</OBJECT>
<!-- Object creates minute hand for clock, structured graphic-->
<OBJECT ID="sgMinuteHand"
CLASSID = "CLSID:369303C2-D7AC-11D0-89D5-00A0C90833E6"
STYLE="POSITION:absolute; TOP:0; LEFT:0; WIDTH:200; HEIGHT:200; Z-INDEX:5">
<PARAM NAME="Line0001" VALUE="SetLineColor(255, 0, 0)">
<PARAM NAME="Line0002" VALUE="SetLineStyle(1)">
<PARAM NAME="Line0003" VALUE="SetFillColor(255,0,0)">
<PARAM NAME="Line0004" VALUE="SetFillStyle(1)">
<PARAM NAME="Line0005" VALUE="Rect(-5,-3,85,6,0)">
</OBJECT>
<!-- Object creates hour hand for clock, structured graphic -->
<OBJECT ID="sgHourHand"
CLASSID = "CLSID:369303C2-D7AC-11D0-89D5-00A0C90833E6"
STYLE="POSITION:ABSOLUTE; TOP:0; LEFT:0; WIDTH:200; HEIGHT:200; Z-INDEX:5">
<PARAM NAME="Line0001" VALUE="SetLineColor(0, 0, 255)">
<PARAM NAME="Line0002" VALUE="SetLineStyle(1)">
<PARAM NAME="Line0003" VALUE="SetFillColor(0,0,255)">
<PARAM NAME="Line0004" VALUE="SetFillStyle(1)">
<PARAM NAME="Line0005" VALUE="Rect(-5,-3,70,6,0)">
</OBJECT>
</div>
</div>
<!-- Sequencer, controls timing and continuation of clock motion -->
<OBJECT ID="Seq"
CLASSID="CLSID:B0A6BAE2-AAF0-11d0-A152-00A0C908DB96">
</OBJECT>
</body>
</html>
ساعة وتحية
<html>
<head>
<title>Floating Time</title>
<script language="JavaScript">
// Instructions:
// This script combines a bunch of different scripts together to
// create the effect of a "floating clock." First off, the browser
// requirements are IE 4.0+. Other browsers will work,
// but the clock will be in the status bar. Don't worry, there's
// a browser detector included, to keep the script completely bug-free.
// I've commented out all of the different sections, to try and make
// it a little easier to understand. Here's a list of the features that
// this "mega-script" includes: Real time clock, message based on the time,
// browser detector, floating display, and AM/PM. There's very little
// that you have to do to set this up; just the font size and color.
// Start Time Function
function makeclock() {
// Declare the time variables
var runTime = new Date()
var hours = runTime.getHours()
var minutes = runTime.getMinutes()
var seconds = runTime.getSeconds()
var dn = "AM"
var msg = null
if (hours > 12) {
dn = "PM"
hours -= 12
}
if (hours == 0) {
hours = 12
}
// After all the definitions for "hours" are done, make the timely messages
if (hours <= 12 && dn == "AM") {
msg = "صباح الخير"
}
else if (hours <= 5 && dn == "PM") {
msg = "مساء الخير"
}
else {
msg = "مساء الورد"
}
// Continue on with regular time function
if (minutes <= 9) {
minutes = "0" + minutes
}
if (seconds <= 9) {
seconds = "0" + seconds;
}
currtime = hours + ":" + minutes + ":" + seconds + " " + dn
// Make sure that the browser is IE 4.0+ or compatible
if (document.all) {
currtime += "<br>" + msg
var html
document.all.clockface.innerHTML = currtime
}
// If the browser's not IE 4.0+, the clock displays in the status bar
else {
currtime += " - " + msg
window.status = currtime
}
// Make sure that the clock keeps going
var keepgoing = setTimeout("makeclock()", 1000)
// Start the floater function
check()
}
// End Time Function
// Start floater code
var mover = null
if (navigator.appName.indexOf("Netscape") != -1) {
var mover = "document.clockface.top = window.pageYOffset"
}
else {
var mover = "clockface.style.pixelTop = document.body.scrollTop + 10"
}
function check() {
object = "clockface"
eval(mover)
setTimeout("check()", 0)
}
// End floater code
</script>
</head>
<!-- Don't forget the onLoad event handler -->
<body onLoad="makeclock()">
<!-- Begin Style Sheet -->
<!-- (to make the clock look pretty) -->
<style type="text/css"> #clockface {
background-color : White;
border: 2px solid black;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size : 10pt;
font-style : normal;
padding : 1;
color : Black;
position:absolute;
visibility:show;
left:10px;
top:10px;
z-index:0
}
</style>
<!-- End Style Sheet -->
<!-- Begin Clockface HTML -->
<div id="float">
<div id="clockface">
</div>
</div>
<!-- End Clockface HTML -->
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</body>
</html>
لارسال رسالة سريعه
<SCRIPT language="JavaScript">
<!--
function e_friend(e_add,subject1)
{
if ((subject1=="") || (subject1==null))
subject="Hi!";
window.location="mailto:"+e_add+"?subject="+subject1;
}
//-->
</SCRIPT>
<p align="center"><font face="Tahoma" size="2" color="#0000FF">ادخل
عنوان صديقك وموضوع الرسالة</font></p>
<P>
<FORM name="e_form" style="background-color: #F0F0F0">
<p align="center"><font face="Tahoma" size="2" color="#0000FF">عنوان
البريد</font>
<p align="center"><font face="Tahoma" size="2" color="#0000FF">
<INPUT type="text" name="emadd" size="30">
</font>
<p align="center"><font face="Tahoma" size="2"><font color="#0000FF">موضوع
الرسالة
<BR>
</font>
<INPUT type="text" name="subj" size="30">
</font>
<P align="center">
<INPUT TYPE="button" Value="ارسل الان" onClick="e_friend(this.form.emadd.value,this.form.subj.value)">
</form>
ميزان للوزن
<script language="JavaScript">
<!-- hide from old browsers
function ClearForm (form) {
form.weight.value="";
form.waist.value="";
form.bodyfat.value="";
}
function VerifyForm(form) {
// Holds whether or not the form is correct
var Correct = true;
// Check for missing fields
if (form.weight.value == null || form.weight.value.length == 0 ||
form.waist.value == null || form.waist.value.length == 0) {
alert ("\nPlease fill in all of the form elements");
Correct = false;
}
// Check that only numbers are in the weight and waist fields
else {
// Holds the floats representing the weight and waist
var TestWeight;
var TestWaist;
// Parse the weight and waist values and put in the variables
TestWeight = parseFloat(form.weight.value);
TestWaist = parseFloat(form.waist.value);
// Check to see that TestWeight is a number
if (isNaN (TestWeight)) {
alert("\nMake sure to enter the weight\nas a number.");
Correct = false;
form.weight.value="";
}
// Check to see that TestWaist is a number
if (isNaN (TestWaist)) {
alert("\nMake sure to enter the waist size\nas a number.");
Correct = false;
form.waist.value="";
}
// Check that the TestWeight is greater than 0
if (TestWeight <= 0) {
alert("\nCome on. Enter a real weight.");
Correct = false;
form.weight.value="";
}
// Check that the TestWaist is greater than 0
if (TestWaist <= 0) {
alert("\nCome on. Enter a real waist size.");
Correct = false;
form.waist.value="";
}
}
// If the inputs are correct, calculate the bodyfat percent
if (Correct) {
// Holds the bodyfat number and percent
var BF;
var BFPercent;
// Make the male calculations
if (form.gender[0].checked) {
BF = -98.42 + 4.15*TestWaist - .082*TestWeight;
}
// Make the female calculations
else {
BF = -76.76 + (4.15*TestWaist) - (.082*TestWeight);
}
// Calculate the bodyfat percentage
BFPercent = BF / TestWeight;
BFPercent = BFPercent * 100;
BFPercent = Math.round(BFPercent);
// Send this number to the screen
form.bodyfat.value = BFPercent + "%";
}
}
// finish hiding from old browsers -->
</script><font color="#000080">Calculator</font></h2>
<form method="post" name="bodyfat">
<div align="center"><center><table border="2" cellpadding="5">
<TBODY> <tr>
<td><font color="#000080" face="Tahoma">ذكر ولا
أنثى؟</font><font face="Tahoma"><br>
<input type="radio" checked name="gender"
value="MalePick" align="left"> ذكر<br>
<input type="radio" name="gender" value="FemPick"
align="left"> أنثى<br>
</font></td>
<td valign="top"><font color="#000080" face="Tahoma">كم
وزنك؟(lbs.)</font><font face="Tahoma"><br>
<input type="text" size="8" name="weight"><br>
<br>
</font><font color="#000080" face="Tahoma">كم
طولك بالإنش؟</font><font face="Tahoma"><br>
<input type="text" size="8" name="waist"> </font></td>
</tr>
<tr>
<td colspan="2"> <input
type="button" value="أمسح"
onclick="ClearForm(this.form)"> <input type="button"
value="أحسب النتيجه"
onclick="VerifyForm(this.form)"></td>
</tr>
<tr>
<td colspan="2"><p align="center"><font
color="#22165A"><font تناسق وزنك مع طولك هي </FONT> <input type="text" size="10"
name="bodyfat"> </font></p>
</td>
</tr>
<font color="#22165A"></TBODY></font>
</table>
</center></div>
</form>
<font color="#22165A"><!-- END OF SCRIPT --></font>
عدد سكان العالم
<BODY onload=maind()>
<SCRIPT language=JavaScript>
function maind()
{
startdate = new Date()
now(startdate.getYear(),startdate.getMonth(),startdate.getDate(),startdate.getHours(),startdate.getMinutes(),startdate.getSeconds())
}
function ChangeValue(number,pv)
{
numberstring =""
var j=0
var i=0
while (number > 1)
{
numberstring = (Math.round(number-0.5) % 10) + numberstring
number= number / 10
j++
if (number > 1 && j==3) {
numberstring = "." + numberstring
j=0}
i++
}
numberstring= " " + numberstring+",00"
if (pv==1) { document.schuld.schuld.value = numberstring }
if (pv==2) {document.newnow.newnow.value = numberstring}
}
function now(year,month,date,hours,minutes,seconds)
{
startdatum = new Date(year,month,date,hours,minutes,seconds)
var now = 5700000000.0
var now2 = 5790000000.0
var groeipercentage = (now2 - now) / now *100
var groeiperseconde = (now * (groeipercentage/100))/365.0/24.0/60.0/60.0
nu = new Date ()
schuldstartdatum = new Date (96,1,1)
secondenoppagina = (nu.getTime() - startdatum.getTime())/1000
totaleschuld= (nu.getTime() - schuldstartdatum.getTime())/1000*groeiperseconde + now
ChangeValue(totaleschuld,1);
ChangeValue(secondenoppagina*groeiperseconde,2);
timerID = setTimeout("now(startdatum.getYear(),startdatum.getMonth(),startdatum.getDate(),startdatum.getHours(),startdatum.getMinutes(),startdatum.getSeconds())",200)
}
</SCRIPT><CENTER><font face="Tahoma" color="#0000FF">سكان العالم في
تزايد مستمر<BR>
</font>
<FORM name=schuld><font face="Tahoma"><INPUT name=schuld size=25> </font> </FORM><font face="Tahoma"><BR><font color="#0000FF">عدد
اللذين ابصروا الدنيا منذ فتحك لهذه الصفحة<BR>
</font></font>
<FORM name=newnow><INPUT name=newnow size=25>
</FORM></CENTER>
<HR>
لتشغيل ملف صوتي ند دخول
الزائر
<center>
<object id="RAOCXPlayer"
classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" height="50"
width="250">
<param name="controls" value="ControlPanel">
<param name="nolabels" value="true">
<param name="autostart" value="true">
<param name="console" value="player1">
<embed TYPE="audio/x-pn-realaudio-plugin" NAME="player1" CONTROLS="ControlPanel" HEIGHT=25 WIDTH=250 NOLABELS=TRUE AUTOSTART=TRUE console="player1"> </object>
<object id="RAOCXPlayer2"
classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" height="25"
width="250">
<param name="controls" value="StatusBar">
<param name="nolabels" value="true">
<param name="autostart" value="true">
<param name="SRC" value="http://www.uaefm.com/abdullah_rwaishid/tesawar.ram">
<param name="console" value="player1">
<embed TYPE="audio/x-pn-realaudio-plugin" NAME="player2" SRC="http://عنوان الملف الصوتي"
CONTROLS="StatusBar" HEIGHT=25 WIDTH=250 NOLABELS=TRUE AUTOSTART=TRUE
console="player1">
</object>
</center>
</td>
<td align=center width=150>
شفرة الشاشة المتحركة
<script language="JavaScript1.2">
//change 1 to another integer to alter the scroll speed. Greater is faster
var speed=1
var currentpos=0,alt=1,curpos1=0,curpos2=-1
function initialize(){
startit()
}
function scrollwindow(){
if (document.all)
temp=document.body.scrollTop
else
temp=window.pageYOffset
if (alt==0)
alt=1
else
alt=0
if (alt==0)
curpos1=temp
else
curpos2=temp
if (curpos1!=curpos2){
if (document.all)
currentpos=document.body.scrollTop+speed
else
currentpos=window.pageYOffset+speed
window.scroll(0,currentpos)
}
else{
currentpos=30
window.scroll(0,currentpos)
}
}
function startit(){
setInterval("scrollwindow()",30)
}
window.onload=initialize
</script>
امطار غزيرة
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var no = 50;
var speed = 1;
var ns4up = (document.layers) ? 1 : 0;
var ie4up = (document.all) ? 1 : 0;
var s, x, y, sn, cs;
var a, r, cx, cy;
var i, doc_width = 800, doc_height = 600;
if (ns4up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
else
if (ie4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
x = new Array();
y = new Array();
r = new Array();
cx = new Array();
cy = new Array();
s = 8;
for (i = 0; i < no; ++ i) {
initRain();
if (ns4up) {
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"1\" ");
document.write("top=\"1\" visibility=\"show\"><font color=\"blue\">");
document.write(",</font></layer>");
}
else {
document.write("<layer name=\"dot"+ i +"\" left=\"1\" ");
document.write("top=\"1\" visibility=\"show\"><font color=\"blue\">");
document.write(",</font></layer>");
}
}
else
if (ie4up) {
if (i == 0) {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><font color=\"blue\">");
document.write(",</font></div>");
}
else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><font color=\"blue\">");
document.write(",</font></div>");
}
}
}
function initRain() {
a = 6;
r[i] = 1;
sn = Math.sin(a);
cs = Math.cos(a);
cx[i] = Math.random() * doc_width + 1;
cy[i] = Math.random() * doc_height + 1;
x[i] = r[i] * sn + cx[i];
y[i] = cy[i];
}
function makeRain() {
r[i] = 1;
cx[i] = Math.random() * doc_width + 1;
cy[i] = 1;
x[i] = r[i] * sn + cx[i];
y[i] = r[i] * cs + cy[i];
}
function updateRain() {
r[i] += s;
x[i] = r[i] * sn + cx[i];
y[i] = r[i] * cs + cy[i];
}
function raindropNS() {
for (i = 0; i < no; ++ i) {
updateRain();
if ((x[i] <= 1) || (x[i] >= (doc_width - 20)) || (y[i] >= (doc_height - 20))) {
makeRain();
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
document.layers["dot"+i].top = y[i];
document.layers["dot"+i].left = x[i];
}
setTimeout("raindropNS()", speed);
}
function raindropIE() {
for (i = 0; i < no; ++ i) {
updateRain();
if ((x[i] <= 1) || (x[i] >= (doc_width - 20)) || (y[i] >= (doc_height - 20))) {
makeRain();
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
document.all["dot"+i].style.pixelTop = y[i];
document.all["dot"+i].style.pixelLeft = x[i];
}
setTimeout("raindropIE()", speed);
}
if (ns4up) {
raindropNS();
}
else
if (ie4up) {
raindropIE();
}
// End -->
</script>
عبارة وامضة في شريط
الحالة
<script language="JavaScript">
<!--
var x = 0
var speed = 300
var text = "لاإله إلا الله محمد رسول الله"
function Blinky() {
window.status = text
setTimeout("Blinky2()", speed)
}
function Blinky2() {
window.status = " "
setTimeout("Blinky()", speed)
}
Blinky()
//-->
//http://www.saudint.com
</script>
اختر الوانك بدون تجارب
<blockquote>
<blockquote>
<blockquote>
<script language="JavaScript">
clr=new Array('00','20','40','60','80','a0','c0','ff');
for (i=0;i<8;i++) {
document.write("<table border=1 cellpadding=8>");
for (j=0;j<8;j++) {
document.write("<tr>");
for (k=0;k<8;k++) {
document.write('<td bgcolor="#'+clr[i]+clr[j]+clr[k]+'">');
document.write('<tt><font color="#'+clr[7-i]+clr[7-j]+clr[7-k]+'"> ');
document.write(clr[i]+clr[j]+clr[k]+' </font></tt></td>'); }
document.write("</tr>"); }
document.write("</table><br>"); }
// end -->
</script>
</blockquote>
</blockquote>
</blockquote>
ملاحظــه... اذا لم
تعمل أي من هذه السكربتات الرجاء اخبارنا فورا على بريدنا الالكتروني
Darkwing
حقوق الطبع محفوظه
Copyright 2002 darkwing.8m .net
All Rights Reserved