; var options = {
    onOpen: function(item) {
        if (item.content.lastIndexOf('/') != -1) {
            SetView(item.content.substring(item.content.lastIndexOf('/', item.content.length) + 1))
        }
    },
    onChange: function(item) {
        if (item.content.lastIndexOf('/') != -1) {
            SetView(item.content.substring(item.content.lastIndexOf('/', item.content.length) + 1))
        }
    },
    autoplayMovies: false
};
function SetRate(val, itemId) {
    if (val != null && val != 'undefined') {
        var $formData = "r_mi=49&r_mn=" + spliter('Gallery') + "&r_i=" + itemId + "&r_r=" + val
        $.ajax({ type: "POST", url: "/Modules/common/Rates.Save.aspx", data: $formData, success: function(msg) { }, error: function() { }, beforeSend: function() { } });
    }
}
function SetView(val) {
    if (val != null && val != 'undefined') {
        var $formData = "r_f=" + val;
        $.ajax({ type: "POST", url: "/Modules/gallery/Counter.Update.aspx", data: $formData, success: function(msg) { }, error: function() { }, beforeSend: function() { } });
    }
}
