<***** language="Java*****1.2"> /* Disable right click ***** II (on images)- By Dynamicdrive.com For full source, Terms of service, and 100s DTHML *****s Visit http://www.dynamicdrive.com */ var clickmessage="Right click disabled on images!" function disableclick(e) { if (document.all) { if (event.button==2||event.button==3) { if (event.srcElement.tagName=="IMG"){ alert(clickmessage); return false; } } } else if (document.layers) { if (e.which == 3) { alert(clickmessage); return false; } } else if (document.getElementById){ if (e.which==3&&e.target.tagName=="IMG"){ alert(clickmessage) return false } } } function associateimages(){ for(i=0;i <*****> /* CSS Menu highlight- By Marc Boussard (marc.boussard@syntegra.fr) Modified by DD for NS4 compatibility Visit http://www.dynamicdrive.com for this ***** */ var ns4class='' <***** LANGUAGE="Java*****"> function bookmark(url, de*****ion) { netscape="Netscape User's hit CTRL+D to add a bookmark to this site." if (navigator.appName=='Microsoft Internet Explorer') { window.external.AddFavorite(url, de*****ion); } else if (navigator.appName=='Netscape') { alert(netscape); } } //-->

<***** language="Java*****1.2"> //Dynamic countdown ***** II- © Dynamic Drive (www.dynamicdrive.com) //Support for hour minutes and seconds added by Chuck Winrich (winrich@babson.edu) on 12-12-2001 //For full source code, 100's more DHTML *****s, visit http://www.dynamicdrive.com function setcountdown(theyear,themonth,theday,thehour,themin,thesec){ yr=theyear;mo=themonth;da=theday;hr=thehour;min=themin;sec=thesec } //////////CONFIGURE THE COUNTDOWN ***** HERE////////////////// //STEP 1: Configure the countdown-to date, in the format year, month, day, hour(0=midnight,23=11pm), minutes, seconds: setcountdown(2005,06,27,20,00,00) //STEP 2: Change the two text below to reflect the occasion, and message to display on that occasion, respectively var occasion="Our War With {B*B}" var message_on_occasion="War In Progress" //STEP 3: Configure the below 5 variables to set the width, height, background color, and text style of the countdown area var countdownwidth='520px' var countdownbgcolor='' var countdowntextcolor='#A0B0E0' var opentags='
' var closetags='
' //////////DO NOT EDIT PAST THIS LINE////////////////// var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec") var crosscount='' function start_countdown(){ if (document.layers) document.countdownnsmain.visibility="show" else if (document.all||document.getElementById) crosscount=document.getElementById&&!document.all?document.getElementById("countdownie") : countdownie countdown() } if (document.all||document.getElementById) document.write('') function countdown(){ var today=new Date() var todayy=today.getYear() if (todayy < 1000) todayy+=1900 var todaym=today.getMonth() var todayd=today.getDate() var todayh=today.getHours() var todaymin=today.getMinutes() var todaysec=today.getSeconds() var todaystring=montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin+":"+todaysec futurestring=montharray[mo-1]+" "+da+", "+yr+" "+hr+":"+min+":"+sec dd=Date.parse(futurestring)-Date.parse(todaystring) dday=Math.floor(dd/(60*60*1000*24)*1) dhour=Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1) dmin=Math.floor(((dd%(60*60*1000*24))%(60*60*1000))/(60*1000)*1) dsec=Math.floor((((dd%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1) //if on day of occasion if(dday<=0&&dhour<=0&&dmin<=0&&dsec<=1&&todayd==da){ if (document.layers){ document.countdownnsmain.document.countdownnssub.document.write(opentags+message_on_occasion+closetags) document.countdownnsmain.document.countdownnssub.document.close() } else if (document.all||document.getElementById) crosscount.innerHTML=opentags+message_on_occasion+closetags return } //if passed day of occasion else if (dday<=-1){ if (document.layers){ document.countdownnsmain.document.countdownnssub.document.write(opentags+"Occasion already passed! "+closetags) document.countdownnsmain.document.countdownnssub.document.close() } else if (document.all||document.getElementById) crosscount.innerHTML=opentags+"Occasion already passed! "+closetags return } //else, if not yet else{ if (document.layers){ document.countdownnsmain.document.countdownnssub.document.write(opentags+dday+ " days, "+dhour+" hours, "+dmin+" minutes, and "+dsec+" seconds left until "+occasion+closetags) document.countdownnsmain.document.countdownnssub.document.close() } else if (document.all||document.getElementById) crosscount.innerHTML=opentags+dday+ " days, "+dhour+" hours, "+dmin+" minutes, and "+dsec+" seconds left until "+occasion+closetags } setTimeout("countdown()",1000) }




Home page
1942 official site
Multiplay
ED Ladder
*uca* Emails
*uca* Meetup photos
Join us

*uca* Stats
ED War Calender
War Calender
ED War Results
War Results
Challege us

[GSW]
Tuff Gong
LANSE
PTG
MPUK
DFR
VOD
_DGD_
Ex EWD
=NCO=
|FTA|
FORCE 10
{DK}
>BK<
{B*B}
H2H

Click To Add To Favorites

<***** type="text/java*****"> /*********************************************** * Fading Scroller- © Dynamic Drive DHTML code library (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code ***********************************************/ var delay = 3000; //set delay between message change (in miliseconds) var maxsteps=30; // number of steps to take to change from start color to endcolor var stepdelay=40; // time in miliseconds of a single step //**Note: maxsteps*stepdelay will be total time in miliseconds of fading effect var startcolor= new Array(0,0,0); // start color (red, green, blue) var endcolor=new Array(160,176,224); // end color (red, green, blue) var fcontent=new Array(); begintag='
'; //set opening tag, such as font declarations fcontent[0]="NEW THIS FORUM IS NO LONGER OUR HOME, PLEASE CLICK THE *uca* BANNER BELOW TO GO TO OUR NEW HOME ALTERNATIVLEY PLEASE VISIT www.ukcyberassassins.co.uk"; closetag='
'; var fwidth='550px'; //set scroller width var fheight='80px'; //set scroller height var fadelinks=1; //should links inside scroller content also fade like text? 0 for no, 1 for yes. ///No need to edit below this line///////////////// var ie4=document.all&&!document.getElementById; var DOM2=document.getElementById; var faderdelay=0; var index=0; /*Rafael Raposo edited function*/ //function to change content function changecontent(){ if (index>=fcontent.length) index=0 if (DOM2){ document.getElementById("fscroller").style.color="rgb("+startcolor[0]+", "+startcolor[1]+", "+startcolor[2]+")" document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag if (fadelinks) linkcolorchange(1); colorfade(1, 15); } else if (ie4) document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag; index++ } // colorfade() partially by Marcio Galli for Netscape Communications. //////////// // Modified by Dynamicdrive.com function linkcolorchange(step){ var obj=document.getElementById("fscroller").getElementsByTagName("A"); if (obj.length>0){ for (i=0;i 0) { newcolor[i] = startcolor[i]-(Math.round((diff/maxsteps))*step); } else { newcolor[i] = startcolor[i]+(Math.round((Math.abs(diff)/maxsteps))*step); } } return ("rgb(" + newcolor[0] + ", " + newcolor[1] + ", " + newcolor[2] + ")"); } if (ie4||DOM2) document.write('
'); if (window.addEventListener) window.addEventListener("load", changecontent, false) else if (window.attachEvent) window.attachEvent("onload", changecontent) else if (document.getElementById) window.onload=changecontent

UK CYBER ASSASSINS

  53 registered members
Login | Register Your Free Account (Required) | Search | Help | Find Communities! Need help logging in?
1 visitor in the last 15 minutes: 0 Members - 1 Guest - 0 Anonymous

  Forum # Posts Last Comment
all
  General
58797/11/05 9:43
Squad Administration
  BACKUPS2
33227/11/05 9:34






Ventrilo
Punk Buster
MSN Messenger
1942 Patches
File Planet
Game Spy
MIRC

Photobucket
P.C. Pitstop
Firewall Tester
Online Virus Checker
Windows Updates
IDG.net
Ad Aware
PC Tools
Win Troubleshoot
MSN Add-ons

Joe
E Cards
Emoticons
Cockups
Fantasy Football

PREPARE FOR THE TRIBAL WAR IN BABYLON !!
ERBALISTS UNITE !!

<***** language="Java*****1.2"> /* Flashing Link *****-© Dynamic Drive (www.dynamicdrive.com) For full source code, installation instructions, 100's more DHTML *****s, and Terms Of Use, Visit http://dynamicdrive.com */ if (document.all&&document.all.flashlink){ var flashlinks=document.all.flashlink if (flashlinks.length==null) flashlinks[0]=document.all.flashlink function changecolor(which,type,color){ if (type==0){ if (flashlinks[which].style.color!=color) flashlinks[which].style.color=color else flashlinks[which].style.color='' } else if (type==1){ if (flashlinks[which].style.backgroundColor!=color) flashlinks[which].style.backgroundColor=color else flashlinks[which].style.backgroundColor='' } } if (flashlinks.length==null){ var flashengine='setInterval("changecolor(0,'+flashlinks[0].flashtype+',\''+flashlinks[0].flashcolor+'\')",'+'1000)' eval(flashengine) } else for (i=0;i

Powered By ezboard® Ver. 7.32
Copyright ©1999-2007 ezboard, Inc.