function values2keys($arr, $value=1){$new = array();while (list($k,$v) = each($arr)){$v = trim($v);if ($v != ""){ $new[$v] = $value;}}return $new;}