// ======================================================================================
// Resets the checkBox with given id to checkState false
// ======================================================================================
function RemoveCheckBoxCheck(strId)
{
	document.getElementById(strId).checked = false;
}
