﻿// JScript File


function UpdateSelectionOk (messageText,blnUnchecked)
{
    //messageText.evalScripts();
   
    if (j$(messageText).is('script')) {
        eval(j$(messageText).html());
    }
    else {
        j$(messageText).find("script").each(function () {
            eval($(this).html());
        });
    }
    
//if (blnUnchecked!=null)
//var elmt= j$(blnUnchecked);
//if (elmt!=null)
//	elmt.checked=false;

}
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 );
	}
}

