Hi

I'm having a bit starting problem with java ajax.

I have this rather simple script
Code:
function UpdateSQL(ReleaseID, MediaTypeID, sideElement) {
    if (typeof XMLHttpRequest != 'undefined') {
        return new XMLHttpRequest();
    }
    try {
        return new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
        try {
            return
...