With some searching I've found that this error happens when I click the save button: [code]Error: me.username is undefined Source File: http://dev.coloadaptationprofile.org/administrator/index2.php#save Line: 185[/code] which is the red line below: [code] function cbFrmSubmitButton() { var me = this.elements; var r = new RegExp("^[\<|\>|\"|\'|\%|\;|\(|\)|\&|\+|\-]*$", "i"); var errorMSG = ''; var iserror=0; [color=#FF0000]if (cbDefaultFieldbackgroundColor === undefined) cbDefaultFieldbackgroundColor = ((me['username'].style.getPropertyValue) ? me['username'].style.getPropertyValue("backgroundColor") : me['username'].style.backgroundColor);[/color] if (me['username'].value == "") { errorMSG += "Please enter a username.\n"; me['username'].style.backgroundColor = "red"; iserror=1; } else if (r.exec(me['username'].value) || (me['username'].value.length < 3)) { errorMSG += "Please enter a valid Username:. No spaces, more than 2 characters and contain 0-9,a-z,A-Z\n"; me['username'].style.backgroundColor = "red"; iserror=1; [/code] Doesn't make any sense to me. Any ideas? I'd hate to have to open up the CB code and hardwire a new submit button to submit the mysql update. Thanks Evan