﻿
var currentUrl = window.location.toString();


function validatePassword() {
    if ($("#PasswordInput").attr("value") == "Zodprog1973") {
        $("#DownloadContent").show("fast");
        $("#DownloadLogin").hide("fast");
    }
    else {
        $("#DownloadLogin").attr("value", "");
        $("#DownloadLogin").focus();
        $("#LoginErrorMessage").text("Felaktigt lösenord, vänligen försök igen");
    }
}


// SCRIPTS TO BE RUN AT STARTUP BELOW -----
$(document).ready(function() {


});

