﻿
function UpdateSelectionOk (messageText)
{
messageText.evalScripts();
}
function UdpateSelectionFailed(messageText)
{
alert(messageText.responseText);
}
function AddRemoveFromSelection(evtsrc, FamiId, ProdId)
{
 if (evtsrc.checked)
 {
  AskRemote('/Ajax/Selection/AddProduct.aspx?FamiId=' + FamiId + '&ProdId=' + ProdId ,UpdateSelectionOk,UdpateSelectionFailed);
 }
 else
 {
  AskRemote('/Ajax/Selection/RemoveProduct.aspx?FamiId=' + FamiId + '&ProdId=' + ProdId,UpdateSelectionOk,UdpateSelectionFailed );
 }
}