//Checkbox select
function jqCheckAll3( id, pID )
{
	$( "#" + pID + " :checkbox").attr('checked', $('#' + id).is(':checked'));
}




