﻿/// <reference path="../../Scripts/jquery-1.3.2-vsdoc.js" />

$(function() {

    $(".linkLanguageEn").click(function() {
        if ($("#LanguagePopup").length == 0) {
            var txt = "<div id='LanguagePopupTextPlate'>";
            txt += "<div id='LanguagePopupSubject'>Welcome to Destination Apelviken!</div>";
            txt += "We are currently updating our website for our foreign visitors.<br />";
            txt += "We apologize for the inconvenience and hope to complete the<br/>update as soon as possible.";
            txt += "<div style='padding-top:12px; padding-bottom:12px;'>For more information about our facilities, please contact us by email <a href=\"mailto:info@apelviken.se\" class=\"LinkWhiteBold\">info@apelviken.se</a> or through +46 340 64 13 00.</div>";
            txt += "<div style='padding-top:12px; padding-bottom:12px;'><i>Sincerely Yours<br />Destination Apelviken</i></div>";
            txt += "<div class='FloatLeft' style='width:108px;'><b>E-mail:</b></div><div class='FloatLeft'><a href=\"mailto:info@apelviken.se\" class=\"LinkWhiteBold\">info@apelviken.se</a></div><div class='ClearBoth'></div>";
            txt += "<div class='FloatLeft' style='width:108px;'><b>Telephone:</b></div><div class='FloatLeft'>+46 340 64 13 00</div>";
            txt += "<div class='ClearBoth'></div>";
            $("#Wrapper").append("<div id='LanguagePopup'><div style='position:relativ;'><img id='LanguagePopupClose' class='ClickLink' src='/Content/Images/Language/Popup/close.png'/>" + txt + "</div></div>");

            $("#LanguagePopupClose").click(function() {
                LangEnHide();
            });
        }
        else {
            LangEnHide();
        }
    });

    $(".linkLanguageDe").click(function() {
        if ($("#LanguagePopup").length == 0) {
            var txt = "<div id='LanguagePopupTextPlate'>";
            txt += "<div id='LanguagePopupSubject'>Willkommen im Destination Apelviken!</div>";
            txt += "Momentan sind wir mit Änderungen unserer Webbseiten beschäftigt.<br />Wir bitten um Entschuldigung für alle Unannehmlichkeiten, die diese Änderungen verursachen können. Wir hoffen, dass wir diese Arbeit so schnell wie möglich abschliessen können.";
            txt += "<div style='padding-top:12px; padding-bottom:12px;'>Für weitere Information über unsere Anlage bitte setzen Sie sich entweder telefonisch +46 340-64 13 00 oder per Mail <a href=\"mailto:info@apelviken.se\" class=\"LinkWhiteBold\">info@apelviken.se</a> mit uns in Verbindung.</div>";
            txt += "<div style='padding-top:12px; padding-bottom:12px;'><i>Mit freundlichen Grüssen<br />Destination Apelviken</i></div>";
            txt += "<div class='FloatLeft' style='width:108px;'><b>E-mail:</b></div><div class='FloatLeft'><a href=\"mailto:info@apelviken.se\" class=\"LinkWhiteBold\">info@apelviken.se</a></div><div class='ClearBoth'></div>";
            txt += "<div class='FloatLeft' style='width:108px;'><b>Telephone:</b></div><div class='FloatLeft'>+46 340 64 13 00</div>";
            txt += "<div class='ClearBoth'></div>";
            $("#Wrapper").append("<div id='LanguagePopup'><div style='position:relativ;'><img id='LanguagePopupClose' class='ClickLink' src='/Content/Images/Language/Popup/close.png'/>" + txt + "</div></div>");

            $("#LanguagePopupClose").click(function() {
                LangEnHide();
            });
        }
        else {
            LangEnHide();
        }
    });
    
});

function LangEnHide() {
    $("#LanguagePopupClose").remove();
    $("#LanguagePopup").fadeOut(function() {
    $("#LanguagePopup").remove();
    });
    
}
