function runFeedback() {
    if ($("#feedbackFrame").length == 0) {
        $("body").append("\
        <div id='feedbackFrame'>\
                <div id='feedbackFrame_veil' style=''>\
                        <p>...</p>\
                </div>\
                <div id=\"feedbackForm\">\
                </div>\
                <style type='text/css'>\
                        #feedbackFrame { margin-left:12%; } \
                        #feedbackFrame .close { font-size:20px;font-weight:bold;position:absolute;right:15px;top:10px;cursor:pointer; } \
                        #feedbackFrame_veil { display: none; position: fixed; width: 100%; height: 100%; top: 0; left: 0; background-color: rgba(255,255,255,.25); cursor: pointer; z-index: 900; }\
                        #feedbackFrame_veil p { color: black; font: normal normal bold 20px/20px Helvetica, sans-serif; position: absolute; top: 50%; left: 50%; width: 10em; margin: -10px auto 0 -5em; text-align: center; }\
                        #feedbackFrame #feedbackForm { padding:50px 0 0 50px; background-color:white; display: none; position: fixed; top: 10%; width: 700px; height: 420px; z-index: 999; border: 10px solid rgba(0,0,0,.5); margin: -5px 0 0 -5px; }\
                </style>\
        </div>");
        $("#feedbackFrame_veil").fadeIn(550);
    } else {
        $("#feedbackFrame_veil").fadeOut(550);
        $("#feedbackFrame #feedbackForm").slideUp(500);
        setTimeout("$('#feedbackFrame').remove()", 550);
    }
    $("#feedbackFrame_veil").click(function(event){
        $("#feedbackFrame_veil").fadeOut(550);
        $("#feedbackFrame #feedbackForm").slideUp(500);
        setTimeout("$('#feedbackFrame').remove()", 550);
    });

    $.post("http://www.zarohom.sk/feedbackform?ajax=true", function(data){DisplayFeedbackForm(data)});

}

function DisplayFeedbackForm(data) {
    $("#feedbackFrame #feedbackForm").html(data);
    $("#feedbackFrame #feedbackForm").slideDown(500);

    $("#feedbackForm .close").click(function(event){
        $("#feedbackFrame_veil").fadeOut(550);
        $("#feedbackFrame #feedbackForm").slideUp(500);
        setTimeout("$('#feedbackFrame').remove()", 550);
    });
}

$(document).ready(function() {
    if($.cookie("feedbackForm") != "true") {
        $.idle(function() {
            runFeedback();
            $.cookie("feedbackForm", "true", {path: '/', expires: 30});
        }, 60000);
    }
});

function runErrorReport() {
    if ($("#feedbackFrame").length == 0) {
        $("body").append("\
        <div id='feedbackFrame'>\
                <div id='feedbackFrame_veil' style=''>\
                        <p>...</p>\
                </div>\
                <div id=\"feedbackForm\">\
                </div>\
                <style type='text/css'>\
                        #feedbackFrame { margin-left:12%; } \
                        #feedbackFrame .close { font-size:20px;font-weight:bold;position:absolute;right:15px;top:10px;cursor:pointer; } \
                        #feedbackFrame_veil { display: none; position: fixed; width: 100%; height: 100%; top: 0; left: 0; background-color: rgba(255,255,255,.25); cursor: pointer; z-index: 900; }\
                        #feedbackFrame_veil p { color: black; font: normal normal bold 20px/20px Helvetica, sans-serif; position: absolute; top: 50%; left: 50%; width: 10em; margin: -10px auto 0 -5em; text-align: center; }\
                        #feedbackFrame #feedbackForm { padding:50px 0 0 50px; background-color:white; display: none; position: fixed; top: 10%; width: 700px; height: 420px; z-index: 999; border: 10px solid rgba(0,0,0,.5); margin: -5px 0 0 -5px; }\
                </style>\
        </div>");
        $("#feedbackFrame_veil").fadeIn(550);
    } else {
        $("#feedbackFrame_veil").fadeOut(550);
        $("#feedbackFrame #feedbackForm").slideUp(500);
        setTimeout("$('#feedbackFrame').remove()", 550);
    }
    $("#feedbackFrame_veil").click(function(event){
        $("#feedbackFrame_veil").fadeOut(550);
        $("#feedbackFrame #feedbackForm").slideUp(500);
        setTimeout("$('#feedbackFrame').remove()", 550);
    });

    $.post("http://www.zarohom.sk/errorreport?ajax=true", function(data){DisplayFeedbackForm(data)});
}
