TB_openOtherMovie = function(title, obj, id){
    TB_remove();
    if (navigator.userAgent.toLowerCase().indexOf('safari') > -1) {
        var hash = "id="+ id;
    } else {
        var hash = "#id="+ id;
    }
    
    setTimeout(function(){TB_show(title, obj.href, hash);},500);
};