To change the program so individual selected results open in a separate browser window. Here is how to make the simple changes to the nav.html file so a variant of this program will do this.: To make results open in a separate window, just alter the nav.html file by adding target="_blank" to a couple of key lines in the code for that web page, as shown below: if (searchType == SEARCHURL) { for (var i = reference; i < currentRecord; i++) { var divide = results[i].split("|"); docObj.writeln('\t
\n\n'); } } else { for (var i = reference; i < currentRecord; i++) { var divide = results[i].split('|'); docObj.writeln('\n\n\t
'); } NOTE: THE SPACE BEFORE THE WORD target IS also added and is NEEDED. THEN, also, remove the following line from that same nav.html file: