﻿$(document).ready(function () {
    function defaultView() {
        $(".collapsed_box").css("display", "block");
        $(".expander_box").css("display", "none");
    }
    $(".collapsed_box").click(function () {
        defaultView()
        $(this).parent().find(".expander_box").fadeIn(0);
        $(this).css("display", "none");
    });
    $(".expander_box").click(function () {
        defaultView()
        $(this).parent().find(".collapsed_box").css("display", "block");
        $(this).fadeOut('slow')
    });

    $(".open_list").click(function () {
        $(".UdvSogning").slideToggle('slow');
    });

    if($("#TopLogin1_txtMedlemsnummer").length > 0)
    {
        $("#TopLogin1_txtMedlemsnummer").watermark('Medlems nr.');
        $("#TopLogin1_txtPass").watermark('PIN kode');
    }
});
function OpenPano(link) {

    var winWidth = document.documentElement.clientWidth;
    var winHeight = document.documentElement.clientHeight;
    window.open('360/'+link, '_blank', 'status=yes,resizable=yes,top=0,left=0,width=' + winWidth + ',height=' + winHeight + '');
}
function submitenter(myfield, e) {
    var keycode;
    if (window.event) keycode = window.event.keyCode;
    else if (e) keycode = e.which;
    else return true;

    if (keycode == 13) {
        __doPostBack("", "lbtnLoginMedlem_Click");
        return false;
    }
    else {
        return true;
    }
}
