﻿function UpdateSelectionOk (messageText){
   // if (blnUnchecked != null)

     //   var elmt = $(blnUnchecked);
    //if (elmt != null) { elmt.checked = false; }
    
var cibleTop = $('CompareLnkTop');
var cibleBottom = $('CompareLnkBottom'); 
if (cibleTop != null) {    Element.update(cibleTop, messageText); }
 if(cibleBottom != null) {        Element.update(cibleBottom, messageText);    }
}


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,null);}
	else {AskRemote('/Ajax/Selection/RemoveProduct.aspx?FamiId=' + FamiId + '&ProdId=' + ProdId, UpdateSelectionOk, UdpateSelectionFailed, null); }
}

function RemoveAllFromSelection(evtsrc, FamiId)
{
    alert("Suppression");
    AskRemote('/Ajax/Selection/RemoveAllProducts.aspx?FamiId=' + FamiId , UpdateSelectionOk,UdpateSelectionFailed,null);
}