function getCheckBox(objSel) {
	if (objSel.checked){
		return true
	}
	else
		return false;
}

