  function InvokeAction(A)
  {
    var Pos = document.forms[0].action.indexOf("Action=") + 7;
    document.forms[0].action = document.forms[0].action.substring(0, Pos) + A;
    document.forms[0].submit();
  }
  
function CheckBox(obj)
{
	$(obj).parents("tr:first").each(function (){
		$(this).find("input[type=checkbox]").attr("checked", "checked");
		//alert("For this type jQuery found " + input + ".");
	});
	//alert("For this type jQuery found " + input.length + ".");
}
