Have a lot of it figured out.
Getting a Syntax error in the AJAX_Callback funtion in the global.js file
Down near the bottom of the script. I'm 99% certian it's not actually an issue with the script. But i'm unsure how to prove it. or find it.
if (debugRequestText) {
alert(encodedData);
}
x.send(encodedData);
if (!clientCallBack) {
if (debugResponseText) {
alert(x.responseText);
}
result = eval("(" + x.responseText + ")");
if (debugErrors && result.error) {
alert("error: " + result.error);"syntax error occurs here" }
}
delete x;
return result;