<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head>
<script language="JavaScript">
function checkForm()
{
if(document.mailer.regelnund2.checked==false)
{
alert("Bitte Kreuz bei den Regeln und den 2 Euro machen");
return false
}
if(document.mailer.nick.value=="")
{
alert ("Bitte Deinen gewünscherten nick eingeben");
document.mailer.alter.focus();
return false;
}
if(document.mailer.realname.value=="")
{
alert ("Bitte deinen Namen eingeben");
document.mailer.realname.focus();
return false;
}
if (document.mailer.geschlecht.selectedIndex==0)
{
alert ("Bitte dein Geschlecht wählen");
return false;
}
if(document.mailer.alter.value=="")
{
alert ("Bitte dein Alter eingeben");
document.mailer.alter.focus();
return false;
}
if( document.mailer.wohnort.value.length <2  )
{
alert ("Bitte gib deinen Wohnort ein");
document.mailer.wohnort.focus();
return false;
}
if (document.mailer.email.value=="")
{alert ("Bitte deine Email eingeben");
document.mailer.email.focus();
return false
}
if(document.mailer.email.value.indexOf('@')==-1 ||document.mailer.email.value.indexOf('.')==-1)
{
alert ("Dein gültige Emailadresse muss  \n '@' (At-Zeichen)und einen '.' (Punkt)\n enthalten.");
document.mailer.email.focus();
return false
}
if( document.mailer.ICQ.value.length <2  )
{
alert ("Bitte ICQ nr. eingeben");
document.mailer.ICQ.focus();
return false;
}
if (document.mailer.cxpselect.selectedIndex==0)
{
alert ("Bitte Ja oder Nein bei Clanerfahrung aufwählen");
return false;
}
if (document.mailer.inetselect.selectedIndex==0)
{
alert ("Bitte Internet Connection auswählen");
return false;
}
if (document.mailer.internetand.value=="" && document.mailer.inetselect.selectedIndex==5)
{alert ("Bitte die Internetverbindung angeben (andere)");
document.mailer.internetand.focus();
return false
}
}
//-->
</script>
<meta http-equiv="imagetoolbar" content="no"><meta name="[eXecute] Clan" content="index,follow"><title>[eXecute] Clan HP: Page powered by www.chillys-world.de</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><meta http-equiv="Content-Type" content="text/html; "><meta http-equiv="Pragma" content="cache"><meta http-equiv="Content-Language" content="de"><meta name="description" content="Cs mehr als nur ein Game..."><meta name="keywords" content="Cheating Death, XCT clan, Steam installer, Izy"><meta name="author" content="Izy"><meta name="publisher" content="www.chillys-world.de"><meta name="copyright" content="www.chillys-world.de"><meta name="page-topic" content=""><meta http-equiv="Reply-to" content="
[email protected]"><meta name="creation_Date" content="12/13/2003"><meta name="expires" content="Fri 31 december 2004"><meta name="revisit-after" content="2 days"><style type="text/css">TABLE {
 FONT-SIZE: x-small; COLOR: #999999; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif; TEXT-DECORATION: none
}
A:active {
 COLOR: #999999; TEXT-DECORATION: none
}
A:hover {
 TEXT-DECORATION: none
}
A:link {
 COLOR: #000000; TEXT-DECORATION: none
}
A:visited {
 COLOR: #000000; TEXT-DECORATION: none
}
.header {
 BACKGROUND-IMAGE:   url(../../bkc/img/header.jpg); BACKGROUND-REPEAT: no-repeat
}
</style><script language="JavaScript">
startColor = '#0066FF';
fadeColor = '#0066FF';
stepIn = 20;
stepOut = 25;
autoFade = true;
sloppyClass = true;
hexa = new makearray(16);
for(var i = 0; i < 10; i++)
    hexa
 = i;
hexa[10]='a'; hexa[11]='b'; hexa[12]='c';
hexa[13]='d'; hexa[14]='e'; hexa[15]='f';
document.onmouseover = domouseover;
document.onmouseout = domouseout;
fadeColor = dehexize(fadeColor.toLowerCase());
var fadeId = new Array();
function dehexize(Color){
        var colorArr = new makearray(3);
        for (i=1; i<7; i++){
                for (j=0; j<16; j++){
                        if (Color.charAt(i) == hexa[j]){
                                if (i%2 !=0)
                                        colorArr[Math.floor((i-1)/2)]=eval(j)*16;
                                else
                                colorArr[Math.floor((i-1)/2)]+=eval(j);
                        }
                }
        }
        return colorArr;
}
function domouseover() {
        if(document.all){
                var srcElement = event.srcElement;
                if ((srcElement.tagName == 'A' && autoFade && srcElement.className != 'nofade') || srcElement.className == 'fade' || (sloppyClass && srcElement.className.indexOf('fade') != -1)) {
                                if (!srcElement.startColor) {
                                        srcElement.startColor = (srcElement.style.color)? srcElement.style.color: srcElement.currentStyle.color;
                                        srcElement.startColor = dehexize(srcElement.startColor.toLowerCase());
                                }
                                fade(srcElement.startColor,fadeColor,srcElement.uniqueID,stepIn);
                }
        }
}
function domouseout() {
        if (document.all){
                var srcElement = event.srcElement;
                if ((srcElement.tagName == 'A' && autoFade && srcElement.className != 'nofade') || srcElement.className == 'fade' || (sloppyClass && srcElement.className.indexOf('fade') != -1)) {
                                fade(fadeColor,srcElement.startColor,srcElement.uniqueID,stepIn);
                }
        }
}
function makearray(n) {
    this.length = n;
    for(var i = 1; i <= n; i++)
        this = 0;
    return this;
}
function hex(i) {
    if (i < 0)
        return '00';
    else if (i > 255)
        return 'ff';
    else
       return '' + hexa[Math.floor(i/16)] + hexa[i%16];
}
function setColor(r, g, b, element) {
      var hr = hex(r); var hg = hex(g); var hb = hex(b);
      element.style.color = '#'+hr+hg+hb;
}
function fade(s,e,element,step) {
        var sr = s[0]; var sg = s[1]; var sb = s[2];
        var er = e[0]; var eg = e[1]; var eb = e[2];
        if (fadeId[0] != null && fade[0] != element) {
                var orig = eval(fadeId[0]);
                setColor(orig.startColor[0],orig.startColor[1],orig.startColor[2],orig);
                var i = 1;
                while(i < fadeId.length) {
                        clearTimeout(fadeId);
                        i++;
                }
        }
        for(var i = 0; i <= step; i++) {
                fadeId[i+1] = setTimeout('setColor(Math.floor(' +sr+ ' *(( ' +step+ ' - ' +i+ ' )/ ' +step+ ' ) + ' +er+ ' * (' +i+ '/' +
                        step+ ')),Math.floor(' +sg+ ' * (( ' +step+ ' - ' +i+ ' )/ ' +step+ ' ) + ' +eg+ ' * (' +i+ '/' +step+
                        ')),Math.floor(' +sb+ ' * ((' +step+ '-' +i+ ')/' +step+ ') + ' +eb+ ' * (' +i+ '/' +step+ ')),'+element+');',i*step);
        }
        fadeId[0] = element;
}
</script><script language="JavaScript">
<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->
</script><script>
  <!--
  nereidFadeObjects = new Object();
  nereidFadeTimers = new Object();
  function nereidFade(object, destOp, rate, delta) {
    if (!document.all)
      return
    if (object != "[object]") {
      setTimeout("nereidFade("+object+","+destOp+","+rate+","+delta+")",0);
      return;
    }
    clearTimeout(nereidFadeTimers[object.sourceIndex]);
    diff = destOp-object.filters.alpha.opacity;
    direction = 1;
    if (object.filters.alpha.opacity > destOp) {
      direction = -1;
    }
    delta=Math.min(direction*diff,delta);
    object.filters.alpha.opacity+=direction*delta;
    if (object.filters.alpha.opacity != destOp) {
      nereidFadeObjects[object.sourceIndex]=object;
      nereidFadeTimers[object.sourceIndex]=setTimeout("nereidFade(nereidFadeObjects["+object.sourceIndex+"],"+destOp+","+rate+","+delta+")",rate);
    }
  }
  -->
  </script></head>
<body font-family="" verdana="" font-size="" 7pt="" alink="#0066ff" background="Join%20Us!_files/backg.gif" bgcolor="#251c07" link="#0066ff" text="#999999" vlink="#0066ff">
<div id="Layer1" style="position: absolute; left: 0px; top: 0px; width: 984px; height: 497px; z-index: 1;"> 
  <p align="center">
		
		
	
	
    
  </p>
</div>
<div id="Layer4" style="position: absolute; left: 170px; top: 681px; width: 0px; height: 1px; z-index: 9;"></div>
<div id="Layer9" style="position: absolute; left: 163px; top: 897px; width: 0px; height: 5px; z-index: 10;"></div>
<div id="Layer10" style="position: absolute; left: 850px; top: 874px; width: 0px; height: 7px; z-index: 11;"></div>
<div id="Layer11" style="position: absolute; left: 802px; top: 953px; width: 0px; height: 4px; z-index: 12;"></div>
<div id="Layer13" style="position: absolute; left: 860px; top: 953px; width: 0px; height: 8px; z-index: 14;"></div>
<div id="Layer14" style="position: absolute; left: 860px; top: 816px; width: 0px; height: 3px; z-index: 15;"></div>
<div id="Layer15" style="position: absolute; left: 873px; top: 853px; width: 0px; height: 1px; z-index: 16;"></div>
<div id="Layer16" style="position: absolute; left: 861px; top: 872px; width: 0px; height: 5px; z-index: 17;"></div>
<div id="Layer17" style="position: absolute; left: 800px; top: 338px; width: 0px; height: 9px; z-index: 18;"></div>
<div id="Layer18" style="position: absolute; left: 152px; top: 872px; width: 0px; height: 1px; z-index: 19;"></div>
<div id="Layer20" style="position: absolute; left: 117px; top: 338px; width: 0px; height: 4px; z-index: 21;"></div>
<div id="Layer30" style="position: absolute; left: 821px; top: 872px; width: 0px; height: 3px; z-index: 31;"></div>
<div id="Layer31" style="position: absolute; left: 845px; top: 862px; width: 0px; height: 10px; z-index: 32;"></div>
<div id="Layer32" style="position: absolute; left: 280px; top: 861px; width: 0px; height: 11px; z-index: 33;"></div>
<div id="Layer24" style="position: absolute; left: 459px; top: 442px; width: 0px; height: 1px; z-index: 37;"></div>
<div id="Layer19" style="position: absolute; left: 846px; top: 899px; width: 0px; height: 4px; z-index: 47;"></div>
<div id="Layer12" style="position: absolute; left: 147px; top: 395px; width: 0px; height: 5px; z-index: 49;"></div>
<div id="Layer8" style="position: absolute; left: 609px; top: 255px; width: 0px; height: 2px; z-index: 54;"></div>
<div id="Layer2" style="position: absolute; left: 127px; top: 834px; width: 0px; height: 7px; z-index: 56;"></div>
<div id="Layer23" style="position: absolute; left: 882px; top: 337px; width: 0px; height: 7px; z-index: 58;"></div>
<div id="Layer26" style="position: absolute; left: 244px; top: 746px; width: 0px; height: 8px; z-index: 60;"></div>
<div id="Layer27" style="position: absolute; left: 317px; top: 804px; width: 0px; height: 1px; z-index: 61;"></div>
<div id="Layer28" style="position: absolute; left: 210px; top: 746px; width: 0px; z-index: 62;"></div>
<div id="Layer33" style="position: absolute; left: 219px; top: 801px; width: 0px; height: 9px; z-index: 64;"></div>
<div id="Layer25" style="position: absolute; left: 522px; top: 408px; width: 0px; height: 10px; z-index: 65;"></div>
<div id="Layer29" style="position: absolute; left: 493px; top: 348px; width: 0px; height: 10px; z-index: 66;"></div>
<div id="Layer6" style="position: absolute; left: 412px; top: 283px; width: 0px; height: 4px; z-index: 68;"></div>
<div id="Layer34" style="position: absolute; left: 118px; top: 933px; width: 0px; height: 6px; z-index: 74;"></div>
<div id="Layer3" style="position: absolute; left: 363px; top: 319px; width: 0px; height: 9px; z-index: 80;"></div>
<div id="Layer39" style="position: absolute; left: 138px; top: 337px; width: 0px; height: 6px; z-index: 83;"></div>
<div id="Layer5" style="position: absolute; left: 39px; top: 631px; width: 139px; height: 161px; z-index: 51;"> 
<table border="0" height="" width="170">
      <tbody><tr><td width="11%"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font></td>
      <td width="100%"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><font color="#00ff00">   ..::Menue::..</font></font></td>
    </tr></tbody></table>
 
 <table border="0" height="" width="120">
 <tbody><tr> 
      <td width="11%"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font></td>
      <th>Home</th>
    </tr>
 <tr> 
      <td height="14"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font></td>
      <th>Gaestebuch</th>
    </tr>
    <tr> 
      <td><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font></td>
      <th>Forum</th>
    </tr>
    <tr>
 <td><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font></td>
      <th>Sponsoren</th>
    </tr>
    <tr>
 <td><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font></td>
      <th>Download</th>
 </tr>
 </tbody></table>
 <table border="0" height="" width="200">
      <tbody><tr><td height="14"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font></td>
      <td><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><font color="#00ff00"><font color="#0000ff"></font>..::Clan::..</font></font></td>
  </tr></tbody></table><table>
    <tbody><tr>
      <td><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font></td>
      <th>Members</th>
    </tr>
    <tr> 
      <td><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font></td>
      <th>Clan History</th>
    </tr>
    <tr> 
      <td height="14"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font></td>
      <th>Wars</th>
    </tr>
    <tr> 
      <td height="14"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font></td>
      <th>Fight Us!</th>
     </tr>
    <tr> 
      <td height="14"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font></td>
      <th>Join Us!</th>
    </tr>
    <tr> 
      <td height="14"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font></td>
      <th>Regeln</th>
    </tr><tr> 
      <td height="1"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font></td>
      <th>Beschwerden</th>
  </tr></tbody></table>
  <div align="center">© 2003 by
        </div>
    <table border="0" cellpadding="0" cellspacing="0" width="100%">
    <tbody><tr> 
      </tr>
    <tr> 
      <td><div align="center">
</div></td>
    </tr>
  </tbody></table>
  <font face="Verdana, Arial, Helvetica, sans-serif" size="1"> </font></div>
<div id="Layer36" style="position: absolute; left: 500px; top: 350px; width: 87px; height: 129px; z-index: 92;"> 
  <table border="0" bordercolor="#000000" cellpadding="0" cellspacing="0" height="124" width="100">
    <tbody><tr> 
      <td height="15" width="102"><div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font> 
          <font face="Verdana, Arial, Helvetica, sans-serif"><font color="#00ff00"><font color="#ff0000"></font>letzte Wars</font></font><font face="Verdana, Arial, Helvetica, sans-serif" size="1"> 
          </font></div></td>
    </tr>
    <tr><td><div align="center">
</div></td></tr>
    <tr> 
      <td><div align="center">
</div></td></tr>
    <tr> 
      <td><div align="center">
</div></td>
    </tr>
  </tbody></table>
</div>
<div id="Layer37" style="position: absolute; left: 884px; top: 507px; width: 0px; height: 4px; z-index: 93;"></div>
<div id="Layer22" style="position: absolute; left: 372px; top: 852px; width: 0px; height: 1px; z-index: 94;"></div>
<div id="Layer21" style="position: absolute; left: 648px; top: 654px; width: 0px; height: 5px; z-index: 95;"></div>
<div id="Layer35" style="position: absolute; left: 385px; top: 535px; width: 506px; height: 385px; z-index: 96;"> 
<font face="Verdana, Arial, Helvetica, sans-serif" size="2"><center><font color="#0000ff" size="+3"><font face="Comic Sans MS">Join Us!</font></font></center></font>
<font color="#00ff00"><font size="+1">Wenn ihr unseren Clan gut findet und mit kosten von 2€ pro Monat einverstanden seit dann könnt ihr unseren Clan beitreten</font>
<font color="#00ff00"><font size="+1">Beachtet aber das ihr:
<font color="#ff0000"><font size="+1">ICQ haben müsst
<font color="#ff0000"><font size="+1">2€ im Monat bezahlen müsst
<font color="#ff0000"><font size="+1">Im Clan aktiv sein müsst
<font color="#ff0000"><font size="+1">Nicht Cheatet und Rechtsradi. seid
</font></font></font></font></font></font></font></font></font></font></font><form name="mailer" action="mail.php" method="get" enctype="text/plain">
<div align="center"><font color="#00ff00"><font color="#00ff00"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#00ff00"></font></font></font></font></font></font></font></font></font></font></font></font></div><font color="#00ff00"><font color="#00ff00"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#00ff00">
      </font></font></font></font></font></font></font></font></font></font></font></font><table>
<form action="[email protected]" method="post" 
      enctype="text/plain">
 </table><table> <tbody><tr><th>Hier die Regeln</th></tr></tbody></table><font color="#00ff00"><font color="#00ff00"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#00ff00">
    </font></font></font></font></font></font></font></font></font></font></font></font><div align="left"><font color="#00ff00"><font color="#00ff00"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#00ff00"> <input name="regelnund2" value="ja" type="checkbox"><span class="normal"><font size="1">Ich bin mit den Clan Regeln und den 2€ Clan gebühr/Monat einverstanden</font></span>
</font></font></font></font></font></font></font></font></font></font></font></font><div align="left"><font color="#00ff00"><font color="#00ff00"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#00ff00"><font size="+1">Nickname: <font color="#ff0000">[XCT]</font><input name="nick" size="40" value="" type="text">*
    
    Realer Name:<input name="realname" size="40" value="" type="text">*
  
Alter:<input name="alter" size="40" value="" type="text">*
  
Geschlecht:<select name="geschlecht"><option>Bitte wählen:</option><option>Maennlich</option><option>Weiblich</option></select>*
  
Wohnort<input name="wohnort" size="40" value="" type="text">*
  
E-Mail:<input name="email" size="40" value="" type="text">*
  
    ICQ Nummer:<input name="ICQ" size="40" value="" type="text">*
 
 
    </font></font></font></font></font></font></font></font></font></font></font></font></font><div align="left"><font color="#00ff00"><font color="#00ff00"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#00ff00"><font size="+1">Lieblingsteam:<select size="1" name="dropdown"><option>Bitte wählen:</option><option>Terrorist</option><option>Counter-Terrorist</option></select>
    Lieblingswaffe:<input name="waffe" size="40" value="" type="text">
 
    Lieblingsmap/s:<input name="map" size="40" value="" type="text">
  
    Clanerfahrung?:<select name="cxpselect"><option>Bitte wählen:</option><option>JA</option><option>NEIN</option></select>*
 
    Wenn ja welcher?:<input name="clan" size="40" value="" type="text">*
 
    Internet Connection:<select name="inetselect"><option>Bitte wählen:</option><option>56 k</option><option>64 k</option><option>DSL</option><option>Cable</option><option>andere</option></select>*
 
    Falls andere welche:<input name="internetand" size="40" value="" type="text">*
    </font></font></font></font></font></font></font></font></font></font></font></font></font>
</p></div></div>
<font color="#00ff00"><font color="#00ff00"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#00ff00">  <table border="0" cellpadding="0" cellspacing="0" width="290">
    <tbody><tr> 
      <td valign="top" width="87"><font face="Tahoma" size="-2"><font color="#00ff00"><font size="+1">Kommentar:</font></font></font></td>
      <td valign="top" width="513"><font face="Tahoma" size="-2"> 
        <textarea name="comment" cols="30" rows="10" id="comment"></textarea>
        </font></td>
		</form> 
    </tr>
  </tbody></table>
      <font size="">*=Diese Felder müssen ausgefüllt werden!</font> </font></font></font></font></font></font></font></font></font></font></font></font>
</p>
<font color="#00ff00"><font color="#00ff00"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1">    
  </font></font></font></font></font></font></font></font></font></font></font>
<font color="#00ff00"><font color="#00ff00"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"> <font face="Tahoma" size="-2"> 
    </input>
 <input value="Abschicken" type="submit" onClick="return checkForm()">
 <input value="Löschen" type="reset"></font></font></font></font></font></font></font></font></font></font></font></font></p></div>
<font color="#00ff00"><font color="#00ff00"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1">  
    
</font></font></font></font></font></font></font></font></font></font></font></form></div>
<div id="Layer38" style="position: absolute; left: 567px; top: 585px; width: 0px; height: 11px; z-index: 97;"></div>
<div id="Layer7" style="position: absolute; left: 621px; top: 349px; width: 87px; height: 57px; z-index: 98;"><font color="#00ff00"><font color="#00ff00"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"> 
  <table border="0" cellpadding="0" cellspacing="0" width="100%">
    </table><table border="0" bordercolor="#000000" cellpadding="0" cellspacing="0" height="124" width="90">
    <tbody><tr> 
      <td height="15" width="102"><div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font> 
          <font face="Verdana, Arial, Helvetica, sans-serif"><font color="#00ff00">Server
          </font></font></div></td>
    </tr>
    <tr>
      <th><div align="center">Teamspeak 2</div></th><th>
    </th></tr>
    <tr> 
      <td><div align="center">
        </div></td>
    </tr>
    <tr> 
      <td><div align="center">
        </div></td>
    </tr>
  </tbody></table>
</font></font></font></font></font></font></font></font></font></font></font></div>
<div id="Layer40" style="position: absolute; left: 39px; top: 830px; width: 137px; height: 48px; z-index: 99;"><font color="#00ff00"><font color="#00ff00"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"> 
  <div id="Layer41" style="position: absolute; left: 899px; top: 333px; width: 0px; height: 2px; z-index: 100;"></div>
<div style="position: absolute; left: 40px; top: 920px; width: 99px; height: 50px; z-index: 101;" id="Layer42"> 
  </div><table border="0" cellpadding="0" cellspacing="0" width="100%">
    <tbody><tr> 
 </tr></tbody></table><table border="0" cellpadding="0" cellspacing="0" width="100%">
    <tbody><tr> 
  </tr>
  </tbody></table>
    
<iframe src="Join%20Us%21_files/counter.htm" marginwidth="0" marginheight="0" frameborder="0" height="20" scrolling="no" width="100"></iframe>
</font></font></font></font></font></font></font></font></font></font></font></div>
<div id="Layer43" style="position: absolute; left: 867px; top: 347px; width: 96px; height: 122px; z-index: 102;"><font color="#00ff00"><font color="#00ff00"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"> 
  <table border="0" cellpadding="0" cellspacing="0" width="100%">
    <tbody><tr> 
      <td><div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font>
   <font color="#00ff00">Link Us</font>
    
    </div></td></tr>
        
  <tr>
  <td><div align="center">
</div></td>
    </tr>
    <tr> 
 <td><div align="center">
</div></td>
      </tr>
    <tr> 
 <td><div align="center">
</div></td>
      </tr>
   <tr><td><div align="center"></div></td>
    </tr>
  </tbody></table>
</font></font></font></font></font></font></font></font></font></font></font></div>
<div id="Layer44" style="position: absolute; left: 757px; top: 347px; width: 101px; height: 112px; z-index: 103;"><font color="#00ff00"><font color="#00ff00"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"> 
  <table border="0" cellpadding="0" cellspacing="0" width="105">
    <tbody><tr> 
      <td><div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font> 
          <font color="#00ff00">Partner</font>
          
        </div></td>
    </tr>
    <tr> 
      <td><div align="center"><font color="#ff0000"></font></div></td>
    </tr>
    <tr> 
      <td><div align="center"><font color="#00ff00"></font></div></td>
    </tr>
    <tr> 
      <td><div align="center"><font color="#00ff00"></font></div></td>
    </tr>
    <tr> 
      <td><div align="center"><font color="#ff0000"></font></div></td>
    </tr>
    <tr> 
      <td><div align="center"><font color="#00ff00"></font></div></td>
    </tr>
  </tbody></table>
</font></font></font></font></font></font></font></font></font></font></font></div>
<div id="Layer45" style="position: absolute; left: 819px; top: 712px; width: 0px; height: 3px; z-index: 104;"></div>
<div id="Layer46" style="position: absolute; left: 918px; top: 839px; width: 0px; height: 6px; z-index: 105;"></div>
<div id="Layer47" style="position: absolute; left: 515px; top: 141px; width: 291px; height: 30px; z-index: 106;"><font color="#00ff00"><font color="#00ff00"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"> 
  <table border="0" cellpadding="0" cellspacing="" width="100%">
    <tbody><tr> 
      <td><div align="center"><font size="20"><font color="#ff0000" size="7"><font face="Comic Sans MS">[eXecute]</font></font></font></div></td>
    </tr>
 <tr><td><div align="center"><font size="20"><font color="#00ff00" size="3"><font face="Comic Sans MS">..::Unwürdige werden recycelt::..</font></font></font></div></td>
    </tr>
  </tbody></table>
</font></font></font></font></font></font></font></font></font></font></font></div>
<div style="position: absolute; left: 820px; top: 729px; width: 151px; height: 219px; z-index: 71;">
<font color="#00ff00"><font color="#00ff00"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1"><font color="#ff0000"><font size="+1">  <table border="0" width="100%">
  </table>
</font></font></font></font></font></font></font></font></font></font></font></div>
</body></html>