Заменено на диалоги пользовательского интерфейса:
$('.thickbox').click(function(){
var href = $( this ).attr("rel");
var dialogTitle= $(this).attr("title");
$("#testDialogID").load(href, function() {
var container = $(this);
container.dialog({
bgiframe: true,
opacity: false,
title: dialogTitle,
modal: true
})
});
});