	function isCheckboxItemSelected(obj){
		var theone=0;
		var a = 0;
		
		
	/*	if (window.document.resultAction.obj_info.checked==true){
			alert("a");theone=1;
		}*/
		if ((!obj.length)&& (obj.checked==true)){//if it is only one checkbox
				//window.document.resultAction.transfer_objects.value=window.document.resultAction.obj_info.value;
				theone=1;
		}else if (obj.length){
			a = obj.length;
			for (i=0;i<a;i++){
				if (obj[i].checked==true){
					theone=1;
					//window.document.resultAction.transfer_objects.value=window.document.resultAction.transfer_objects.value +","+window.document.resultAction.obj_info[i].value;
				}
			}
		}
		if (theone == 0) return false;
		else return true;
	}
