﻿// Dandini.js


function pickCategory(title, rootCat, currCat, fieldName)
{
    var url = "/Categories/PickSingle/" + title + "-" + rootCat + "-" + currCat;
    var choice = window.showModalDialog(url, "", "dialogWidth:500px; dialogHeight:600px; center:1; resizable:1");

    if (choice) {
        window.document.getElementById(fieldName).value = choice.id;
        window.document.getElementById(fieldName + "Name").value = choice.name;

//        var idObj = window.document.getElementById(fieldName);

//        if (idObj != null)
//            idObj.Value = choice.id;

//        var nameObj = window.document.getElementById(fieldName + "Name");

//        if (nameObj != null)
//            nameObj.Value = choice.name;
    }
};


