function TrackLink(id, keyType) {

//make the ajax call
        var req = new Request({
            method: 'get',
            url: 'ajax_tracklinks',
            data: { 'id' : id , 'keyType' : keyType },
            onRequest: function() { },
            onComplete: function(response) { }
        }).send();

}

