You could start them both from a batch file... via call.
If you need to run it through perl, you could add this to the perl script that calls:
sub run_in_bg {
my $pid = fork;
die "Can't fork a new process" unless defined $pid;
# child gets PID 0
if ($pid == 0) {
exec(@_) || die "Can't exec $_[0]";
}
# in case you wanted to use waitpid on it
return $pid;
}
and then add this line to the calling script:
run_in_bg("c:\activeperl\bin\perl.exe", "other_script.pl");