function xmlHttpStateChanged() {

    if (xmlHttp != null && xmlHttp.readyState == 4) {

        if (xmlHttp.status == 200) {
            xmlHttpStatusProceed();
        }
        else {
            xmlHttpStatusError();
        }
    }

    return;
}
