function cda_getCategoryID() {
    var e = document.getElementById( "adsk91-el-id-cat" );
    if( e == null ) {
        return null;
    }
    return e.value;
}

function cda_getContentID() {
    var e = document.getElementById( "adsk91-el-id-cont" );
    if( e == null ) {
        return null;
    }
    return e.value;
}

function cda_getLinkCategoryID() {
    var e = document.getElementById( "adsk91-el-id-lc" );
    if( e == null ) {
        return null;
    }
    return e.value;
}

function cda_getSiteID() {
    var e = document.getElementById( "adsk91-el-id-site" );
    if( e == null ) {
        return null;
    }
    return e.value;
}

function cda_isPreview() {
    var e = document.getElementById( "adsk91-el-is-preview" );
    if( e == null ) {
        return false;
    }
    return e.value == "1";
}