﻿function searchGallery(path) {
    document.getElementById("ctl00_cphAreaMain_GALLERYPATH").value = path;
    document.forms[0].submit();
}

function showMSBTV(file, preview) {

    var cnt = document.getElementById("mediaspace");
    var src = 'silverlight/wmvplayer.xaml';
    var cfg = {
        file: 'http://www.menssanabasket.it/public/video/' + file,
        image: 'http://www.menssanabasket.it/public/video/' + preview + '.jpg',
        height: '313',
        width: '416'
    };

    var ply = new jeroenwijering.Player(cnt, src, cfg);
    document.getElementById("MSBTV").style.display = '';


}