sub load_array($$)
{
my ($a_ref, $file) = @_;
open (FILE, $file) or die "Can't open $file:$!\n";
@{$a_ref} = ;
close FILE;