function checkUncheck(field, msg)
{
	if(confirm(msg)) {return true;}
	else {
		field.checked=null;
		return false;
	}

}
