It's fairly trivial to do if you have a perl (or similar) installed on the server:
#!perl
foreach my $file () {
next unless -M $file > 14;
print "Deleting $file...\n";
# unlink $file or die "Failed to remove $file: $!";
}
The line that actually does the delete is commented out, since there might be kids in the house :)