﻿$(function () {
    $(".item").click(function () {
        return sendValue($(this).attr("rel"), $(this).attr("title"), $(this).attr("href"));
    });
});
function sendValue(selvalue, title, path) {
    if (window.opener.document != null) {
        //window.opener.document.getElementById("KbItemId").value = selvalue;
        window.opener.updateBrochure(selvalue, title, path);
        window.close();
        return false;
    }
    else
        return true;
}
