﻿/*
 * Displays details of the error that was thrown
 */
function ShowError() {
    var divError = document.getElementById("divError");
    divError.style["display"] = divError.style["display"] == "none" ? "block" : "none";
}