﻿function MesajGoster(mesaj, hata) {


    $(document).ready(function () {
        if (hata == "True")
            $.jnotify(mesaj, "error", 10000);
        else
            $.jnotify(mesaj, "warning", 10000);
    });
}

/* kontrol paneline giriş için. üzerine gelindiğinde link görünmemesi açısından */
function GotoPanel() {
    window.location = "/veripanel/hazir-site-yonetim/website-yonetimi.aspx"
}
function openChat() {
    var win = window.open('http://canlidestek.veriyaz.com.tr/Chat.aspx', 'chat', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=603,height=510');
    win.focus();
    win.opener = window;
    return false;
}

function ElementeKay(elementId, topMesafe) {
    try {
        var element = $('#' + elementId);
        if (element != undefined) {
            $('html, body').animate({ scrollTop: element.offset().top - topMesafe }, 500);
        }
    }
    catch (err)
            { }
}

