When I go to user management in the control panel and then click on a user to manage I get the following code:
// bbCode control by // subBlue design //
www.subBlue.com // adapted for Simpleboard by the Two Shoes Module Factory (
www.tsmf.jigsnet.com) // Startup variables var imageTag = false; var theSelection = false; // Check for Browser & Platform for PC & IE specific bits // More details from:
www.mozilla.org/docs/web-developer/sniffer/browser_type.html var clientPC = navigator.userAgent.toLowerCase(); // Get client info var clientVer = parseInt(navigator.appVersion); // Get browser version var is_ie = ((clientPC.indexOf("msie"

!= -1) && (clientPC.indexOf("opera"

== -1)); var is_nav = ((clientPC.indexOf('mozilla'

!= -1) && (clientPC.indexOf('spoofer'

== -1) && (clientPC.indexOf('compatible'

== -1) && (clientPC.indexOf( 'opera'

== -1) && (clientPC.indexOf('webtv'

== -1) && (clientPC.indexOf('hotjava'

== -1)); var is_moz = 0; var is_win = ((clientPC.indexOf("win"

!= -1) || (clientPC.indexOf("16bit"

!= -1)); var is_mac = (clientPC.indexOf("mac"

!= -1); // Define the bbCode tags bbcode = new Array(); bbtags = new Array('
', '', '
', '', '
', '', '
', '', '[code:1]', '[/code:1]', '[ul]', '[/ul]', '[ol]', '[/ol]', '[img size=150]', '[/img]', '[url]', '[/url]', '[li]', '[/li]'); imageTag = false; // Shows the help messages in the helpline window function helpline(help) { document.adminForm.helpbox.value = eval(help + "_help"); } // Replacement for arrayname.length property function getarraysize(thearray) { for (i = 0; i = 4) && is_ie && is_win) { theSelection = document.selection.createRange().text; // Get text selection if (theSelection) { // Add tags around selection document.selection.createRange().text = bbtags[bbnumber] + theSelection + bbtags[bbnumber + 1]; txtarea.focus(); theSelection = ''; return; } } else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0)) { mozWrap(txtarea, bbtags[bbnumber], bbtags[bbnumber + 1]); return; } // Find last occurance of an open tag the same as the one just clicked for (i = 0; i = 4) && is_ie && is_win) { theSelection = document.selection.createRange().text; if (!theSelection) { txtarea.value += bbopen + bbclose; txtarea.focus(); return; } document.selection.createRange().text = bbopen + theSelection + bbclose; txtarea.focus(); return; } else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0)) { mozWrap(txtarea, bbopen, bbclose); return; } else { txtarea.value += bbopen + bbclose; txtarea.focus(); } storeCaret(txtarea); } //####################################################### //code used in My Profile (userprofile.php) function textCounter(field, countfield, maxlimit) { if (field.value.length > maxlimit) { field.value = field.value.substring(0, maxlimit); } else { countfield.value = maxlimit - field.value.length; } } //********************************************************* // Insert emoticons function emo($e) { document.adminForm.message.value = document.adminForm.message.value + $e; document.adminForm.message.focus(); } function submitForm() { submitme = 1; formname = document.adminForm.fb_authorname.value; if ((formname.length