DTApi = {};
DTApi.version = 0.2;
DTApi.defaultFormFrameID = "__dt__form__frame";
DTApi.frameID = DTApi.defaultFormFrameID;
DTApi.receiverFrame = null;
DTApi.resizeFrame = function(w, h) {

    if (typeof h != "undefined") {
        document.getElementById(DTApi.frameID).style.height = h + 'px';
    }
    if (typeof w != "undefined") {
        document.getElementById(DTApi.frameID).style.width = w + "px";
    }
};
DTApi.formSubmittedHandler = null;
DTApi.thankYouPageDisplayed = function(parms) {
    if (DTApi.formSubmittedHandler != null) {
        DTApi.formSubmittedHandler(parms);
    }
}
DTApi.setReceiverFrame = function(frame) {
    DTApi.receiverFrame = frame;
}

window.DTApi = DTApi;

try {
    __dtapi_ready();
}
catch (ex) { }