<
head
>
<
meta
http-equiv
=
"Content-Type"
content
=
"text/html; charset=utf-8"
/>
<
title
>{TITLE}</
title
>
<
link
rel
=
"stylesheet"
type
=
"text/css"
href
=
"include/designs/BBD/style.css"
media
=
"screen"
>
<
link
href
=
"_stylesheet.css"
rel
=
"stylesheet"
type
=
"text/css"
>
<
script
type
=
"text/javascript"
>
//Contents for menu 1
var menu1=new Array()
menu1[0]='<
a
href
=
"?news"
>News</
a
>'
menu1[1]='<
a
href
=
"?gbook"
>GBooK</
a
>'
menu1[2]='<
a
href
=
"?gallery"
>Gallery</
a
>'
menu1[3]='<
a
href
=
"?kalender"
>Kalender</
a
>'
menu1[4]='<
a
href
=
"?links"
>Links</
a
>'
//Contents for menu 2, and so on
var menu2=new Array()
menu2[0]='<
a
href
=
"?teams"
>Squads</
a
>'
menu2[1]='<
a
href
=
"?joinus"
>JoinUs</
a
>'
menu2[2]='<
a
href
=
"?fightus"
>FightUs</
a
>'
menu2[3]='<
a
href
=
"?wars"
>Wars</
a
>'
menu2[4]='<
a
href
=
"?trains"
>Training</
a
>'
menu2[5]='<
a
href
=
"?rules"
>Regeln</
a
>'
//Contents for menu 3, and so on
var menu3=new Array()
menu3[0]='<
a
href
=
"?forum"
>Forum</
a
>'
menu3[1]='<
a
href
=
"?user"
>Mitglieder</
a
>'
menu3[2]='<
a
href
=
"?awaycal"
>Away</
a
>'
menu3[3]='<
a
href
=
"?downloads"
>Downloads</
a
>'
//Contents for menu 4, and so on
var menu4=new Array()
menu4[0]='<
a
href
=
"?contact"
>Kontakt</
a
>'
menu4[1]='<
a
href
=
"?impressum"
>Imprint</
a
>'
menu4[2]='<
a
href
=
"?rules"
>Regelwerk</
a
>'
menu4[3]='<
a
href
=
"?history"
>Geschichte</
a
>'
menu4[4]='<
a
href
=
"?awards"
>Auszeichnungen</
a
>'
var menuwidth='119px' //default menu width
var menubgcolor='write' //menu bgcolor
var disappeardelay=250 //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?
/////No further editting needed
var ie4=document.all
var ns6=document.getElementById&&!document.all
if (ie4||ns6)
document.write('<
div
id
=
"dropmenudiv"
style
=
"visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'"
onMouseover
=
"clearhidemenu()"
onMouseout
=
"dynamichide(event)"
></
div
>')
function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}
function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top="-500px"
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}
function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x <
dropmenuobj.contentmeasure
)
edgeoffset
=
dropmenuobj
.contentmeasure-obj.offsetWidth
}
else{
var
topedge
=
ie4
&& !window.opera? iecompattest().scrollTop : window.pageYOffset
var
windowedge
=
ie4
&& !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure
=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
edgeoffset
=
dropmenuobj
.contentmeasure+obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
edgeoffset
=
dropmenuobj
.y+obj.offsetHeight-topedge
}
}
return edgeoffset
}
function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML
=
what
.join("")
}
function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event)
event.cancelBubble
=
true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj
=
document
.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)
if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
dropmenuobj.x
=
getposOffset
(obj, "left")
dropmenuobj.y
=
getposOffset
(obj, "top")
dropmenuobj.style.left
=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top
=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}
return clickreturnvalue()
}
function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}
function contains_ns6(a, b) {
while (b.parentNode)
if ((
b
= b.parentNode) == a)
return true;
return false;
}
function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}
function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility
=
"hidden"
}
}
function delayhidemenu(){
if (ie4||ns6)
delayhide
=
setTimeout
("hidemenu()",disappeardelay)
}
function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}
if (hidemenu_onclick=="yes")
document.onclick
=
hidemenu
</script>
</
head
>
<
center
>
<
body
>
<
table
width
=
"1200"
border
=
"0"
cellspacing
=
"0"
cellpadding
=
"0"
>
<
tr
>
<
td
width
=
"1200"
height
=
"229"
align
=
"center"
valign
=
"top"
background
=
"include/designs/BBD/Bilder/BBD_01.png"
><
table
width
=
"100%"
border
=
"0"
cellspacing
=
"0"
cellpadding
=
"0"
>
<
tr
>
<
td
width
=
"16"
height
=
"23"
> </
td
>
<
td
width
=
"711"
height
=
"23"
> </
td
>
<
td
width
=
"239"
height
=
"23"
> </
td
>
<
td
height
=
"23"
> </
td
>
<
td
height
=
"23"
> </
td
>
</
tr
>
<
tr
>
<
td
width
=
"16"
height
=
"206"
> </
td
>
<
td
width
=
"702"
height
=
"206"
><
img
src
=
"include/designs/BBD/Bilder/Header.gif"
width
=
"702"
height
=
"206"
/></
td
>
<
td
width
=
"239"
height
=
"206"
align
=
"left"
valign
=
"top"
><
table
width
=
"100%"
border
=
"0"
cellspacing
=
"0"
cellpadding
=
"0"
>
<
tr
>
<
td
width
=
"20"
height
=
"45"
> </
td
>
<
td
height
=
"45"
> </
td
>
<
td
width
=
"20"
height
=
"45"
> </
td
>
</
tr
>
<
tr
>
<
td
width
=
"20"
height
=
"130"
> </
td
>
<
td
height
=
"130"
align
=
"left"
valign
=
"middle"
>{_boxes_login}</
td
>
<
td
width
=
"20"
height
=
"130"
> </
td
>
</
tr
>
<
tr
>
<
td
width
=
"20"
height
=
"20"
> </
td
>
<
td
height
=
"20"
> </
td
>
<
td
width
=
"20"
height
=
"20"
> </
td
>
</
tr
>
</
table
></
td
>
<
td
height
=
"206"
align
=
"center"
valign
=
"top"
><
table
width
=
"100%"
border
=
"0"
cellspacing
=
"0"
cellpadding
=
"0"
>
<
tr
>
<
td
width
=
"20"
height
=
"45"
> </
td
>
<
td
height
=
"45"
> </
td
>
<
td
width
=
"20"
height
=
"45"
> </
td
>
</
tr
>
<
tr
>
<
td
width
=
"20"
height
=
"130"
> </
td
>
<
td
height
=
"130"
align
=
"left"
valign
=
"top"
>{_boxes_topdownloads1}</
td
>
<
td
width
=
"20"
height
=
"130"
> </
td
>
</
tr
>
<
tr
>
<
td
width
=
"20"
height
=
"20"
> </
td
>
<
td
height
=
"20"
> </
td
>
<
td
width
=
"20"
height
=
"20"
> </
td
>
</
tr
>
</
table
></
td
>
<
td
width
=
"30"
height
=
"206"
> </
td
>
</
tr
>
</
table
>
</
td
>
</
tr
>
<
tr
>
<
td
background
=
"include/designs/BBD/Bilder/BBD_02.png"
width
=
"1200"
height
=
"44"
/><
table
width
=
"100%"
border
=
"0"
cellspacing
=
"0"
cellpadding
=
"0"
>
<
tr
>
<
td
width
=
"100"
> </
td
>
<
td
width
=
"142"
><
div
id
=
"info"
><
a
href
=
"#"
onClick
=
"return clickreturnvalue()"
onMouseover
=
"dropdownmenu(this, event, menu1, '123px')"
onMouseout
=
"delayhidemenu()"
></
a
></
div
></
td
>
<
td
width
=
"5"
> </
td
>
<
td
width
=
"109"
><
div
id
=
"gaming"
><
a
href
=
"#"
onClick
=
"return clickreturnvalue()"
onMouseover
=
"dropdownmenu(this, event, menu2, '123px')"
onMouseout
=
"delayhidemenu()"
></
a
></
div
></
td
>
<
td
width
=
"5"
> </
td
>
<
td
width
=
"119"
><
div
id
=
"com"
><
a
href
=
"#"
onClick
=
"return clickreturnvalue()"
onMouseover
=
"dropdownmenu(this, event, menu3, '123px')"
onMouseout
=
"delayhidemenu()"
></
a
></
div
></
td
>
<
td
width
=
"5"
> </
td
>
<
td
width
=
"123"
><
div
id
=
"media"
><
a
href
=
"#"
onClick
=
"return clickreturnvalue()"
onMouseover
=
"dropdownmenu(this, event, menu4, '123px')"
onMouseout
=
"delayhidemenu()"
></
a
></
div
></
td
>
<
td
> </
td
>
<
td
width
=
"345"
>{_boxes_self_newsticker}</
td
>
<
td
width
=
"85"
> </
td
>
</
tr
>
</
table
>
</
td
>
</
tr
>
<
tr
>
<
td
width
=
"1200"
height
=
"187"
align
=
"center"
valign
=
"top"
background
=
"include/designs/BBD/Bilder/BBD_04.png"
/><
table
width
=
"100%"
border
=
"0"
cellspacing
=
"0"
cellpadding
=
"0"
>
<
tr
>
<
td
width
=
"50"
height
=
"35"
> </
td
>
<
td
width
=
"255"
height
=
"35"
> </
td
>
<
td
width
=
"40"
height
=
"35"
> </
td
>
<
td
width
=
"255"
height
=
"35"
> </
td
>
<
td
width
=
"40"
height
=
"35"
> </
td
>
<
td
width
=
"255"
height
=
"35"
> </
td
>
<
td
width
=
"35"
height
=
"35"
> </
td
>
<
td
width
=
"220"
height
=
"35"
> </
td
>
<
td
height
=
"35"
> </
td
>
</
tr
>
<
tr
>
<
td
width
=
"50"
height
=
"135"
> </
td
>
<
td
width
=
"255"
height
=
"135"
align
=
"left"
valign
=
"top"
>{_boxes_lastnews}</
td
>
<
td
width
=
"40"
height
=
"135"
> </
td
>
<
td
width
=
"255"
height
=
"135"
align
=
"left"
valign
=
"top"
>{_boxes_lastforum}</
td
>
<
td
width
=
"40"
height
=
"135"
> </
td
>
<
td
width
=
"255"
height
=
"135"
> </
td
>
<
td
width
=
"35"
height
=
"135"
> </
td
>
<
td
width
=
"220"
height
=
"135"
> </
td
>
<
td
height
=
"135"
> </
td
>
</
tr
>
<
tr
>
<
td
width
=
"50"
> </
td
>
<
td
width
=
"255"
> </
td
>
<
td
width
=
"40"
> </
td
>
<
td
width
=
"255"
> </
td
>
<
td
width
=
"40"
> </
td
>
<
td
width
=
"255"
> </
td
>
<
td
width
=
"35"
> </
td
>
<
td
width
=
"220"
> </
td
>
<
td
> </
td
>
</
tr
>
</
table
>
</
td
>
</
tr
>
<
tr
>
<
td
background
=
"include/designs/BBD/Bilder/BBD_05.png"
width
=
"1200"
height
=
"39"
/><
table
width
=
"100%"
border
=
"0"
cellspacing
=
"0"
cellpadding
=
"0"
>
<
tr
>
<
td
><
table
width
=
"90%"
border
=
"0"
align
=
"center"
cellpadding
=
"0"
cellspacing
=
"0"
>
<
tr
>
<
td
height
=
"20"
align
=
"left"
valign
=
"middle"
>{HMENU}</
td
>
</
tr
>
</
table
>
<
div
align
=
"center"
></
div
></
td
>
</
tr
>
<
tr
>
<
td
><
div
align
=
"center"
>
<
table
width
=
"90%"
border
=
"0"
cellspacing
=
"0"
cellpadding
=
"0"
>
<
tr
>
<
td
align
=
"left"
valign
=
"top"
>{EXPLODE}</
td
>
</
tr
>
</
table
>
</
div
></
td
>
</
tr
>
<
tr
>
<
td
> </
td
>
</
tr
>
</
table
>
</
td
>
</
tr
>
<
tr
>
<
td
width
=
"1200"
height
=
"65"
valign
=
"bottom"
background
=
"include/designs/BBD/Bilder/BBD_07.png"
/><
table
width
=
"100%"
border
=
"0"
cellspacing
=
"0"
cellpadding
=
"0"
>
<
tr
>
<
td
width
=
"50"
> </
td
>
<
td
> </
td
>
<
td
> </
td
>
</
tr
>
<
tr
>
<
td
width
=
"50"
> </
td
>
<
td
align
=
"left"
valign
=
"top"
></
td
>
<
td
> </
td
>
<
td
> </
td
>
</
tr
>
</
table
>
</
td
>
</
tr
>
</
table
>
</
body
>
</
center
>
</
html
>