﻿// JScript File
function deleteCategory(categoryID)
{
    var diagResponse = confirm('Er du sikker på at du ønsker å slette?');
    if (diagResponse)
        adamPostBack("deleteCategory", categoryID);
    return diagResponse;
}

function moveCategoryUp(categoryID)
{
    adamPostBack("moveCategoryUp", categoryID);
}

function moveCategoryDown(categoryID)
{
    adamPostBack("moveCategoryDown", categoryID);
}

function toggleCategoryVisibility(categoryID)
{
    adamPostBack("toggleCategoryVisibility", categoryID);
}

function adamPostBack(eventTarget, eventArgument) {
    var theForm = document.forms['form1'];
    if (!theForm) {
        theForm = document.form1;
    }
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.ADAMTARGET.value = eventTarget;
        theForm.ADAMARGUEMENT.value = eventArgument;
        theForm.submit();
    }
}
