﻿$(function() {
    $.fx.speeds._default = 1000;
    $("#kontaktPrac").dialog({
        autoOpen: false,
        show: "fade",
        hide: "fade",
        modal: true,
        height: 220,
        width: 380,
        buttons: {
            Ok: function() {
                $(this).dialog("close");
            }
        }
    });
});

function OpenContact(id) {
    $.ajax({
    url: "IndexService.asmx/GetPracovnik",
        type: "POST",
        contentType: "application/json; charset=utf-8",
        data: '{ "id":"' + id + '" }',
        dataType: "json",
        success: function(response) {
            var prac = response.d;
            $("#kpMeno").text(prac.Meno);
            $("#kpPriezvisko").text(prac.Priezvisko);
            $("#kpFunkcia").text(prac.Funkcia);
            $("#kpTel1").text(prac.Tel1);
            $("#kpTel2").text(prac.Tel2);
            $("#kpEmail").html("<a href='mailto:" + prac.Email + "'>" + prac.Email + "</a>");
            $("#kpFoto").attr("src", prac.ImageUrl);

            $("#kontaktPrac").dialog("open");

        },
        error: function(xhr, status, error) {
            alert("An error has occurred during processing: " + error);
        }
    });
}


