Description:Help calls x-www-browser  instead of netscape
 Call x-www-browser when clicking help. This fix may be Debian specific.
Author:dod
--- a/ptkdb.pm
+++ b/ptkdb.pm
@@ -175,17 +175,7 @@
 			# Executing "start http://domain.com" it will start the default browser.
 			system(qq!start "ptkdb url title" "$url"!);
 		} else {
-			my (@browsers) = qw/netscape mozilla/ ;
-			my ($fh, $pid, $sh);
-			$sh = 'sh' ;
-			$fh = new FileHandle() ;
-
-			for (@browsers) {
-				$pid = open($fh, qq!$sh $_ "$URLS{ $context }" 2&> /dev/null |!) ;
-				sleep(2);
-				waitpid $pid, 0 ;
-				return if ($? == 0) ;
-				}
+			system ( 'x-www-browser', $url );
 		}
 	} else {
 		warn "Unknown Context '$context'.";
