﻿function DeleteItem() {
    var strMsg = "";

    strMsg += "You are about to delete this item. \r \n";
    strMsg += "NOTE: Deleting this item will DELETE ALL \n";
    strMsg += "REFERENCES related to the item. \r  \n";
    strMsg += "Are your sure you want to delete this item?";

    return confirm(strMsg);
}

function Navigate(url) {
    window.location.href = url;
}

function navigateToIndex() {
    Navigate("../../web/main/default.aspx");
}

function initPage() {
    var obj = window.document.getElementById("logo");
    if (obj) {
        obj.onclick = navigateToIndex;
    }
}

function ChangeInnerHtml(id, html) {
    obj = document.getElementById(id);
    if (obj) {
        if (html == '') {
            html = '&nbsp;';
        }
        obj.innerHTML = html;
    }
}

function ChangeBgColor(obj, color) {
    obj.style.backgroundColor = color;
}