bbcode funktioniert nur noch eingeschränkt. Bitte um hilfe

Bulo
Guten tag zusammen

ich habe da ein Problem was für euch Profis sicherlich kein prob. sein dürfte undzwar funktioniert bei meinen bbcodes der Flash button nicht mehr und der edonkey button jedesmal wenn man da drauf klickt jommt dann unten links im Fenster ein symbol das da ein fehler ist ich hänge euch mal die bbcode.js an vieleicht wäre jemand so nett und könnte mir sagen wie ich den fehler beheben kann ?

lieben gruß

manuel

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
455:
456:
457:
458:
459:
460:
461:
462:
463:
464:
465:
466:
467:
468:
469:
470:
471:
472:
473:
474:
475:
476:
477:
478:
479:
480:
481:
482:
483:
484:
485:
var bbtags   = new Array();

// browser detection
var myAgent   = navigator.userAgent.toLowerCase();
var myVersion = parseInt(navigator.appVersion);
var is_ie   = ((myAgent.indexOf("msie") != -1)  && (myAgent.indexOf("opera") == -1));
var is_win   =  ((myAgent.indexOf("win")!=-1) || (myAgent.indexOf("16bit")!=-1));

function setmode(modeValue) {
 	document.cookie = "bbcodemode="+modeValue+"; path=/; expires=Wed, 1 Jan 2020 00:00:00 GMT;";
}

function normalMode(theForm) {
	if (theForm.mode[0].checked) {
		return true;
	}
	else {
		return false;
	}
}

function getArraySize(theArray) {
 	for (i = 0; i < theArray.length; i++) {
  		if ((theArray[i] == "undefined") || (theArray[i] == "") || (theArray[i] == null)) return i;
	}

 	return theArray.length;
}

function pushArray(theArray, value) {
 	theArraySize = getArraySize(theArray);
 	theArray[theArraySize] = value;

}

function popArray(theArray) {
	theArraySize = getArraySize(theArray);
 	retVal = theArray[theArraySize - 1];
 	delete theArray[theArraySize - 1];
 	return retVal;
}

function smilie(theSmilie) {
	addText(" " + theSmilie, "", false, document.bbform);
}

function closetag(theForm) {
 	if (!normalMode(theForm)) {
  		if (bbtags[0]) addText("[/"+ popArray(bbtags) +"]", "", false, theForm);
  	}
 	setFocus(theForm);
}

function closeall(theForm) {
 	if (!normalMode(theForm)) {
  		if (bbtags[0]) {
   			while (bbtags[0]) {
    				addText("[/"+ popArray(bbtags) +"]", "", false, theForm);
   			}
   		}
 	}

 	setFocus(theForm);
}

function fontformat(theForm,theValue,theType) {
 	setFocus(theForm);

	if (normalMode(theForm)) {
  		if (theValue != 0) {

   			var selectedText = getSelectedText(theForm);
   			var insertText = prompt(font_formatter_prompt+" "+theType, selectedText);
   			if ((insertText != null) && (insertText != "")) {
    				addText("["+theType+"="+theValue+"]"+insertText+"[/"+theType+"]", "", false, theForm);
    			}
  		}
 	}
 	else {
		if(addText("["+theType+"="+theValue+"]", "[/"+theType+"]", true, theForm)) {
			pushArray(bbtags, theType);
		}
	}

 	theForm.sizeselect.selectedIndex = 0;
 	theForm.fontselect.selectedIndex = 0;
 	theForm.colorselect.selectedIndex = 0;
 	theForm.glowselect.selectedIndex = 0;
 	theForm.spanselect.selectedIndex = 0;
  
 	setFocus(theForm);
}

function bbcode(theForm, theTag, promptText) {
	if ( normalMode(theForm) || (bbcode=="IMG")) {
		var selectedText = getSelectedText(theForm);
  		if (promptText == '' || selectedText != '') promptText = selectedText;

  		inserttext = prompt(tag_prompt + "\n[" + theTag + "]xxx[/" + theTag + "]", promptText);
  		if ( (inserttext != null) && (inserttext != "") ) {
			addText("[" + theTag + "]" + inserttext + "[/" + theTag + "]", "", false, theForm);
		}
	}
	else {
		var donotinsert = false;
  		for (i = 0; i < bbtags.length; i++) {
   			if (bbtags[i] == theTag) donotinsert = true;
  		}

  		if (!donotinsert) {
   			if(addText("[" + theTag + "]", "[/" + theTag + "]", true, theForm)){
				pushArray(bbtags, theTag);
			}
  		}
		else {
			var lastindex = 0;

                 	for (i = 0 ; i < bbtags.length; i++ ) {
				if ( bbtags[i] == theTag ) {
					lastindex = i;
				}
			}

  			while (bbtags[lastindex]) {
  				tagRemove = popArray(bbtags);
  				addText("[/" + tagRemove + "]", "", false, theForm);
  			}
  		}
  	}
}

function namedlink(theForm,theType) {
	var selected = getSelectedText(theForm);

        var linkText = prompt(link_text_prompt,selected);
	var prompttext;

        if (theType == "URL") {
 		prompt_text = link_url_prompt;
 		prompt_contents = "http://";
	}
	else {
		prompt_text = link_email_prompt;
		prompt_contents = "";
		}

	linkURL = prompt(prompt_text,prompt_contents);


	if ((linkURL != null) && (linkURL != "")) {
		var theText = '';

              	if ((linkText != null) && (linkText != "")) {
   			theText = "["+theType+"="+linkURL+"]"+linkText+"[/"+theType+"]";
   		}
		else {
			theText = "["+theType+"]"+linkURL+"[/"+theType+"]";
		}

 		addText(theText, "", false, theForm);
 	}
}
function det1706(theForm, theTag, promptText) {

       if(promptText=='') promptText=getSelectedText(theForm);

       if (theTag == "movie") {
               inserttext = prompt("Gebe die volle Adresse des Movie-File ein. \n(z.B. http://www.TEST.de/FILE.wmv)", promptText);
       }

       if ( (inserttext != null) && (inserttext != "") ) {
               addText("[" + theTag + "]" + inserttext + "[/" + theTag + "]", "", false, theForm);
       }

}
///###################edonkey anfang

function ed2kserver(theform,thetype) {
	if (selectedText) { var dtext=selectedText; } else { var dtext=""; }
	linktext = prompt(link_text_prompt1,dtext);
		var prompttext;
		
		
		if (thetype == "edk") {
			prompt_text = "Gebe den Link zum eDonkey File ein !";
			prompt_contents = "ed2k://";
			}
		else {
			prompt_text = "Gebe den Link zum eDonkey File ein !";
			prompt_contents = "ed2k://";
			}
	linkurl = prompt(prompt_text,prompt_contents);
	if ((linkurl != null) && (linkurl != "")) {
		if ((linktext != null) && (linktext != "")) {
			AddTxt = "["+thetype+"="+linkurl+"]"+linktext+"[/"+thetype+"] ";
			AddText(AddTxt,theform);
			
			}
		else{
			AddTxt = "["+thetype+"="+linkurl+"]"+linkurl+"[/"+thetype+"] ";
			AddText(AddTxt,theform);
			
		}
	}
}
///###################edonkey ende

// *********************BBCode-Hack anfang**********************************
function schild(theForm, theTag, promptText) {
       if(promptText=='') promptText=getSelectedText(theForm);
       if (theTag == "schild") {
               inserttext = prompt("Gebe den Text ein der in einem Schild dargestellt werden soll !", promptText);
       }
       if ( (inserttext != null) && (inserttext != "") ) {
               addText("[" + theTag + "]" + inserttext + "[/" + theTag + "]", "", false, theForm);
       }
}
function denkblase(theForm, theTag, promptText) {
       if(promptText=='') promptText=getSelectedText(theForm);
       if (theTag == "denk") {
               inserttext = prompt("Gebe den Text ein der in einer Denkblase dargestellt werden soll !", promptText);
       }
       if ( (inserttext != null) && (inserttext != "") ) {
               addText("[" + theTag + "]" + inserttext + "[/" + theTag + "]", "", false, theForm);
       }
}
function ftpserver(theForm, theTag, promptText) {
       if(promptText=='') promptText=getSelectedText(theForm);
       if (promptText) { var dtext=promptText; } else { var dtext=""; }
	linktext = prompt(link_text_prompt,dtext);
	var promptText;
       if (theTag == "ftp") {
               prompt_text = "Gebe den Link zum FTP-SERVER ein !";
               prompt_contents = "ftp://";
       }
       else {
               prompt_text = "Gebe den Link zum FTP-SERVER ein !";
               prompt_contents = "ftp://";
       }
       linkurl = prompt(prompt_text,prompt_contents);
       if ((linkurl != null) && (linkurl != "")) {
             if ((linktext != null) && (linktext != "")) {
                     theText = "["+theTag+"="+linkurl+"]"+linktext+"[/"+theTag+"] ";
                     addText(theText, "", false, theForm);
             }
             else{
                     theText = "["+theTag+"="+linkurl+"]"+linkurl+"[/"+theTag+"] ";
                     addText(theText, "", false, theForm);
             }
       }
}
function flashfile(theForm, theTag, promptText) {
if (promptText) { var dtext=promptText; } else { var dtext=""; }
var linktext = 'flash'+Math.floor(Math.random()*1000000);
var promptText;
       if (theTag == "flash") {
               prompt_text = "Gebe die URL zum Flash ein !";
               prompt_contents = "http://";
       }
       else {
               prompt_text = "Gebe die URL zum Flash ein !";
               prompt_contents = "http://";
       }
       linkurl = prompt(prompt_text,prompt_contents);
       if ((linkurl != null) && (linkurl != "")) {
             if ((linktext != null) && (linktext != "")) {
                     theText = "["+theTag+"="+linkurl+"]"+linktext+"[/"+theTag+"] ";
                     addText(theText, "", false, theForm);
             }
             else{
                     theText = "["+theTag+"="+linkurl+"]"+linkurl+"[/"+theTag+"] ";
                     addText(theText, "", false, theForm);
             }
       }
}
function privat(theForm, theTag, promptText) {
       if(promptText=='') promptText=getSelectedText(theForm);
       if (promptText) { var dtext=promptText; } else { var dtext=""; }
	linktext = prompt(link_text_prompt,dtext);
	var promptText;
       if (theTag == "privat") {
               prompt_text = "";
               prompt_contents = "";
       }
       else {
               prompt_text = "";
               prompt_contents = "";
       }
       linkurl = prompt(prompt_text,prompt_contents);
       if ((linkurl != null) && (linkurl != "")) {
             if ((linktext != null) && (linktext != "")) {
                     theText = "["+theTag+"="+linkurl+"]"+linktext+"[/"+theTag+"] ";
                     addText(theText, "", false, theForm);
             }
             else{
                     theText = "["+theTag+"="+linkurl+"]"+linkurl+"[/"+theTag+"] ";
                     addText(theText, "", false, theForm);
             }
       }
}
function flash(theForm, theTag, promptText) {
       if(promptText=='') promptText=getSelectedText(theForm);
       if (theTag == "block") {
               inserttext = prompt("Gebe den Text für den BLOCKTEXT ein !", promptText);
       }
       if (theTag == "left") {
               inserttext = prompt("Gebe den Text ein der LINKSBÜNDIG eingefügt wird !", promptText);
       }
       if (theTag == "nimg") {
               inserttext = prompt("Gebe die URL zum Bild ein (Bild wird NEGATIVE dargestellt)", promptText);
       }
       if (theTag == "right") {
               inserttext = prompt("Gebe den Text ein der RECHTSBÜNDIG eingefügt wird !", promptText);
       }
       if (theTag == "wave") {
               inserttext = prompt("Gebe den Text ein der WELLENFÖRMIG dargestellt wird !", promptText);
       }
       if (theTag == "d") {
               inserttext = prompt("Gebe den Text ein der DURCHGESTRICHEN dargestellt werden soll !", promptText);
       }
       if (theTag == "blink") {
               inserttext = prompt("Gebe den Text ein der BLINKEN soll !", promptText);
       }
       if (theTag == "tt") {
               inserttext = prompt("Gebe den Text ein der in Schreibmaschinenform dargestellt werden soll !", promptText);
       }
       if (theTag == "bt") {
               inserttext = prompt("Gebe den Text ein der in BLUR dargestellt werden soll !", promptText);
       }
       if (theTag == "sub") {
               inserttext = prompt("Gebe den Text ein der TIEFGESTELLT dargestellt werden soll !", promptText);
       }
       if (theTag == "s") {
               inserttext = prompt("Gebe den Text ein der in Schattenform dargestellt werden soll !", promptText);
       }
       if (theTag == "sup") {
               inserttext = prompt("Gebe den Text ein der Hochgestellt dargestellt werden soll !", promptText);
       }
       if (theTag == "CENTER") {
               inserttext = prompt("Gebe den Text ein Zentriert dargestellt werden soll !", promptText);
       }
       if (theTag == "denk") {
               inserttext = prompt("Gebe den Text ein der in einer Denkblase dargestellt werden soll !", promptText);
       }
       if (theTag == "ftp") {
               inserttext = prompt("Gebe den Link zum FTP-SERVER ein !", promptText);
       }

       if ( (inserttext != null) && (inserttext != "") ) {
               addText("[" + theTag + "]" + inserttext + "[/" + theTag + "]", "", false, theForm);
       }
}
function bbcode_smilie(){
	window.open("misc.php?action=text2schild","text2schild", "toolbar=no,scrollbars=yes,resizable=yes,statusbar=yes,width=400,height=300");
}
// **********************BBCode-Hack Ende*********************************

function dolist(theForm) {
 	listType = prompt(list_type_prompt, "");
 	if ((listType == "a") || (listType == "1")) {
  		theList = "[list="+listType+"]\n";
  		listEend = "[/list="+listType+"] ";
 	}
 	else {
  		theList = "[list]\n";
  		listEend = "[/list] ";
 	}

 	listEntry = "initial";
 	while ((listEntry != "") && (listEntry != null)) {
  		listEntry = prompt(list_item_prompt, "");
  		if ((listEntry != "") && (listEntry != null)) theList = theList+"[*]"+listEntry+"\n";
 	}

 	addText(theList + listEend, "", false, theForm);
}


function addText(theTag, theClsTag, isSingle, theForm)
{
	var isClose = false;
	var message = theForm.message;
	var set=false;
  	var old=false;
  	var selected="";

  	if(message.textLength>=0 ) { // mozilla, firebird, netscape
  		if(theClsTag!="" && message.selectionStart!=message.selectionEnd) {
  			selected=message.value.substring(message.selectionStart,message.selectionEnd);
  			str=theTag + selected+ theClsTag;
  			old=true;
  			isClose = true;
  		}
		else {
			str=theTag;
		}

		message.focus();
		start=message.selectionStart;
		end=message.textLength;
		endtext=message.value.substring(message.selectionEnd,end);
		starttext=message.value.substring(0,start);
		message.value=starttext + str + endtext;
  		message.selectionStart=start;
  		message.selectionEnd=start;

 		message.selectionStart = message.selectionStart + str.length;

  		if(old) { return false; }

  		set=true;

		if(isSingle) {
			isClose = false;
		}
	}
	if ( (myVersion >= 4) && is_ie && is_win) {  // Internet Explorer
		if(message.isTextEdit) {
			message.focus();
			var sel = document.selection;
			var rng = sel.createRange();
			rng.colapse;
			if((sel.type == "Text" || sel.type == "None") && rng != null){
				if(theClsTag != "" && rng.text.length > 0)
					theTag += rng.text + theClsTag;
				else if(isSingle)
					isClose = true;

             			rng.text = theTag;
			}
		}
		else{
			if(isSingle) isClose = true;

			if(!set) {
      				message.value += theTag;
      			}
		}
	}
	else
	{
		if(isSingle) isClose = true;

		if(!set) {
      			message.value += theTag;
      		}
	}

	message.focus();

	return isClose;
}

function getSelectedText(theForm) {
	var message = theForm.message;
	var selected = '';

	if(navigator.appName=="Netscape" &&  message.textLength>=0 && message.selectionStart!=message.selectionEnd ) 
  		selected=message.value.substring(message.selectionStart,message.selectionEnd);

	else if( (myVersion >= 4) && is_ie && is_win ) {
		if(message.isTextEdit){
			message.focus();
			var sel = document.selection;
			var rng = sel.createRange();
			rng.colapse;

			if((sel.type == "Text" || sel.type == "None") && rng != null){
				if(rng.text.length > 0) selected = rng.text;
			}
		}
	}

  	return selected;
}

function setFocus(theForm) {
 	theForm.message.focus();
}

function opensmiliewindow(x,y,sid) {
 	window.open("misc.php?action=moresmilies&sid="+sid, "smilies", "toolbar=no,scrollbars=yes,resizable=yes,width="+x+",height="+y);
}

ROBthePRO
mal bitte noch das template bbcode_buttons
Bulo
hier ist die bbcode_buttons.tpl Augenzwinkern

ich hoffe mir kann das jemand so umändern das es funktioniert unglücklich

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
<table cellspacing="0" cellpadding="0">
 <tr>
  <td align="left" colspan="3"><span class="smallfont">
   <input type="radio" name="mode" value="0" title="{$lang->items['LANG_POSTINGS_BBCODE_MODE_0']} (alt+n)" accesskey="n" onclick="setmode(this.value)" $modechecked[0] />
   {$lang->items['LANG_POSTINGS_BBCODE_MODE_0']}
   <input type="radio" name="mode" value="1" title="{$lang->items['LANG_POSTINGS_BBCODE_MODE_1']} (alt+e)" accesskey="e" onclick="setmode(this.value)" $modechecked[1] />
   {$lang->items['LANG_POSTINGS_BBCODE_MODE_1']}
  </span></td>
 </tr>
 <tr>
  <td><select id="fontselect" 
    onchange="fontformat(this.form,this.options[this.selectedIndex].value,'FONT')">
    <option value="0">FONT</option>
    $bbcode_fontbits
   </select
   ><select id="sizeselect" 
    onchange="fontformat(this.form,this.options[this.selectedIndex].value,'SIZE')">
    <option value="0">SIZE</option>
    $bbcode_sizebits
   </select
   ><select id="colorselect" 
    onchange="fontformat(this.form,this.options[this.selectedIndex].value,'COLOR')">
    <option value="0">COLOR</option>
    $bbcode_colorbits
   </select>
<br /><select id="colorselect" 
    onchange="fontformat(this.form,this.options[this.selectedIndex].value,'GLOW')">
    <option value="0">GLOW</option>
    $bbcode_colorbits
   </select><select id="colorselect0" 
    onchange="fontformat(this.form,this.options[this.selectedIndex].value,'span')">
    <option value="0">MARKIEREN</option>
    $bbcode_colorbits
   </select>
  </td>
  <td>&nbsp;</td>
  <td rowspan="8"><table>
 <tr class="smallfont">
  <td align="left"><input class="input" type="button" value=" x " accesskey="c" title="{$lang->items['LANG_POSTINGS_BBCODE_CLOSE_CURRENT_TAG']} (alt+c)" style="color:red; font-weight:bold" onclick="closetag(this.form)" /> {$lang->items['LANG_POSTINGS_BBCODE_CLOSE_CURRENT_TAG']}</td>
 </tr>
 <tr class="smallfont">
  <td align="left"><input class="input" type="button" value=" x " accesskey="x" title="{$lang->items['LANG_POSTINGS_BBCODE_CLOSE_ALL_TAGS']} (alt+x)" style="color:red; font-weight:bold" onclick="closeall(this.form)" /> {$lang->items['LANG_POSTINGS_BBCODE_CLOSE_ALL_TAGS']}</td>
 </tr>
</table></td>
 </tr>
 <tr>
  <td align="center" colspan="2">
<img src="{$style['imagefolder']}/bbcode_bold.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_BOLD']}" title="{$lang->items['LANG_POSTINGS_BBCODE_BOLD']}" border="0" onclick="bbcode(document.bbform,'B','')" onmouseover="this.style.cursor='hand';" /><img src="{$style['imagefolder']}/bbcode_italic.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_ITALIC']}" title="{$lang->items['LANG_POSTINGS_BBCODE_ITALIC']}" border="0" onclick="bbcode(document.bbform,'I','')" onmouseover="this.style.cursor='hand';" /><img src="{$style['imagefolder']}/bbcode_underline.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_UNDERLINE']}" title="{$lang->items['LANG_POSTINGS_BBCODE_UNDERLINE']}" border="0" onclick="bbcode(document.bbform,'U','')" onmouseover="this.style.cursor='hand';" />
<img src="{$style['imagefolder']}/bbcode_justify.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_BLOCKSATZ']}" title="{$lang->items['LANG_POSTINGS_BBCODE_BLOCKSATZ']}" border="0" onclick="flash(document.bbform,'block')" onmouseover="this.style.cursor='hand';" /><img src="{$style['imagefolder']}/bbcode_center.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_CENTER']}" title="{$lang->items['LANG_POSTINGS_BBCODE_CENTER']}" border="0" onclick="bbcode(document.bbform,'CENTER','')" onmouseover="this.style.cursor='hand';" /><img src="{$style['imagefolder']}/bbcode_left.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_LINKSBUENDIG']}" title="{$lang->items['LANG_POSTINGS_BBCODE_LINKSBUENDIG']}" border="0" onclick="flash(document.bbform,'left')" onmouseover="this.style.cursor='hand';" /><img src="{$style['imagefolder']}/bbcode_right.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_RECHTSBUENDIG']}" title="{$lang->items['LANG_POSTINGS_BBCODE_RECHTSBUENDIG']}" border="0" onclick="flash(document.bbform,'right')" onmouseover="this.style.cursor='hand';" />
<img src="{$style['imagefolder']}/bbcode_marquee.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_LAUFSCHRIFT']}" title="{$lang->items['LANG_POSTINGS_BBCODE_LAUFSCHRIFT']}" border="0" onclick="flash(document.bbform,'marquee')" onmouseover="this.style.cursor='hand';" /><img src="{$style['imagefolder']}/bbcode_schreib.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_SCHREIBMACHINE']}" title="{$lang->items['LANG_POSTINGS_BBCODE_SCHREIBMACHINE']}" border="0" onclick="flash(document.bbform,'tt')" onmouseover="this.style.cursor='hand';" /><img src="{$style['imagefolder']}/bbcode_blur.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_BLUR']}" title="{$lang->items['LANG_POSTINGS_BBCODE_BLUR']}" border="0" onclick="flash(document.bbform,'bt')" onmouseover="this.style.cursor='hand';" /><img src="{$style['imagefolder']}/bbcode_schatten.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_SCHATTEN']}" title="{$lang->items['LANG_POSTINGS_BBCODE_SCHATTEN']}" border="0" onclick="flash(document.bbform,'s')" onmouseover="this.style.cursor='hand';" /><img src="{$style['imagefolder']}/bbcode_durch.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_DURCHSTRICHEN']}" title="{$lang->items['LANG_POSTINGS_BBCODE_DURCHSTRICHEN']}" border="0" onclick="flash(document.bbform,'d')" onmouseover="this.style.cursor='hand';" /><img src="{$style['imagefolder']}/bbcode_blink.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_BLINK']}" title="{$lang->items['LANG_POSTINGS_BBCODE_BLINK']}" border="0" onclick="flash(document.bbform,'blink')" onmouseover="this.style.cursor='hand';" /><img src="{$style['imagefolder']}/bbcode_wave.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_WELLE']}" title="{$lang->items['LANG_POSTINGS_BBCODE_WELLE']}" border="0" onclick="flash(document.bbform,'wave')" onmouseover="this.style.cursor='hand';" />
  </td>
  </tr>
<tr>
  <td align="center" colspan="2">
<img src="{$style['imagefolder']}/bbcode_flash.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_FLASH']}" title="{$lang->items['LANG_POSTINGS_BBCODE_FLASH']}" border="0" onclick="flash(document.bbform,'flash')" onmouseover="this.style.cursor='hand';" /><img src="{$style['imagefolder']}/bbcode_image.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_IMAGE']}" title="{$lang->items['LANG_POSTINGS_BBCODE_IMAGE']}" border="0" onclick="bbcode(document.bbform,'IMG','http://')" onmouseover="this.style.cursor='hand';" /><img src="{$style['imagefolder']}/bbcode_nimg.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_NEGATIV']}" title="{$lang->items['LANG_POSTINGS_BBCODE_NEGATIV']}" border="0" onclick="flash(document.bbform,'nimg')" onmouseover="this.style.cursor='hand';" />
<img src="{$style['imagefolder']}/bbcode_tief.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_TIEFGESTELLT']}" title="{$lang->items['LANG_POSTINGS_BBCODE_TIEFGESTELLT']}" border="0" onclick="flash(document.bbform,'sub')" onmouseover="this.style.cursor='hand';" /><img src="{$style['imagefolder']}/bbcode_hoch.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_HOCHGESTELLT']}" title="{$lang->items['LANG_POSTINGS_BBCODE_HOCHGESTELLT']}" border="0" onclick="flash(document.bbform,'sup')" onmouseover="this.style.cursor='hand';" /><img src="{$style['imagefolder']}/bbcode_list.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_LIST']}" title="{$lang->items['LANG_POSTINGS_BBCODE_LIST']}" border="0" onclick="dolist(document.bbform)" onmouseover="this.style.cursor='hand';" /><img src="{$style['imagefolder']}/bbcode_code.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_CODE']}" title="{$lang->items['LANG_POSTINGS_BBCODE_CODE']}" border="0" onclick="bbcode(document.bbform,'CODE','')" onmouseover="this.style.cursor='hand';" />
<img src="{$style['imagefolder']}/bbcode_movie.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_MOVIE']}" title="{$lang->items['LANG_POSTINGS_BBCODE_MOVIE']}" border="0" onclick="det1706(document.bbform,'movie','')" onmouseover="this.style.cursor='hand';" /> </tr>
<tr>
  <td align="left" colspan="2">
<img src="{$style['imagefolder']}/bbcode_esel.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_ESEL']}" title="{$lang->items['LANG_POSTINGS_BBCODE_ESEL']}" border="0" onclick="ed2kserver(document.bbform,'ed2k')" onmouseover="this.style.cursor='hand';" /><img src="{$style['imagefolder']}/bbcode_smilie.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_SCHILD']}" title="{$lang->items['LANG_POSTINGS_BBCODE_SCHILD']}" border="0" onclick="schild(document.bbform,'schild')" onmouseover="this.style.cursor='hand';" /><img src="{$style['imagefolder']}/bbcode_denk.gif" alt="{$lang->items['LANG_POSTINGS_BBCODE_DENK']}" title="{$lang->items['LANG_POSTINGS_BBCODE_DENK']}" border="0" onclick="denkblase(document.bbform,'denk')" onmouseover="this.style.cursor='hand';" />

</td>
  </tr>
</table>