﻿$(document).ready(function () {

    $("#sisupr").click(function (e) {
        var height = $('#bezoplayer').height();
        var width = $('#bezoplayer').width();
        leftVal = e.pageX - (width / 2) + "px";
        topVal = e.pageY - (height / 2) + "px";
        $("#bezoplayer").css("left", leftVal);
        $("#bezoplayer").css("top", topVal);
        $("#bezoplayer").css("display", "block");
        return false;
    });
    $("#bezoplayer").click(function () {

        $("#"+this.id).hide();
    });
});
