﻿function getCookie(c_name) {
    var i, x, y, ARRcookies = document.cookie.split(";");
    for (i = 0; i < ARRcookies.length; i++) {
        x = ARRcookies[i].substr(0, ARRcookies[i].indexOf("="));
        y = ARRcookies[i].substr(ARRcookies[i].indexOf("=") + 1);
        x = x.replace(/^\s+|\s+$/g, "");
        if (x == c_name) {
            return unescape(y);
        }
    }
}

function setCookie(c_name, value, exdays) {
    var exdate = new Date();
    exdate.setDate(exdate.getDate() + exdays);
    var c_value = escape(value) + ((exdays == null) ? "" : "; expires=" + exdate.toUTCString());
    document.cookie = c_name + "=" + c_value;
}

function checkCookie() {
    var username = getCookie("username");
    if (username != null && username != "") {

    }
    else {
        username = prompt("Please enter your name:", "");
        if (username != null && username != "") {
            setCookie("username", username, 365);
        }
    }
}

$(document).ready(function () {
    if (document.location.href.search("localhost") != -1) return;
    var s = "SimpleSms";
    if (document.location.href.search(s) != -1 || document.location.href.search("teleclal") != -1 || document.location.href.search("localhost") != -1) {

        var username = getCookie("username");
        if (username == null || username == "" || document.location.href.search("localhost") != -1) {
            $("a#intro").fancybox({
                'transitionIn': 'elastic',
                'transitionOut': 'elastic',
                'speedIn': 600,
                'speedOut': 200,
                'overlayShow': false,
                'showCloseButton': true,
                'modal': false,
                'enableEscapeButton': true
            }).click();

            setCookie("username", username, 365);
        }
    }
});
