fixed windows path parameter

  did not work on windows due to slashes instead of backslashes.

Change-Id: Ieb900442d9ecc720cee61237006c5d80d9f74077
diff --git a/JavaScript Snippets/Explore from here.js b/JavaScript Snippets/Explore from here.js
index dfc7559..af24e07 100644
--- a/JavaScript Snippets/Explore from here.js
+++ b/JavaScript Snippets/Explore from here.js
@@ -28,5 +28,5 @@
 	selection = selection.getParent();
 
 if (selection instanceof org.eclipse.core.resources.IContainer)
-	runProcess("/usr/bin/krusader", [ "--left", getSystemProperty("user.home"), "--right", selection.getRawLocation() ]);
-	//        runProcess("explorer.exe", [ selection.getRawLocation() ]);
\ No newline at end of file
+//	runProcess("/usr/bin/krusader", [ "--left", getSystemProperty("user.home"), "--right", selection.getRawLocation() ]);
+	runProcess("explorer.exe", [ selection.getLocation().toFile().toString() ]);
\ No newline at end of file