The first problem I see is with the URL itself. I have not had much luck getting Windows-style directories to work well in a browser. Try replacing
C:\Users\Geri\Desktop\test_1.htm with
file:///Users/Geri/Desktop/test_1.htm*
Second, I notice your quotations are not matched:
linkURL = "C:\Users\Geri\Desktop\test_1.htm + "?boxid=" + boxid + "&projectName=" + projectName"; should be
linkURL = "C:\Users\Geri\Desktop\test_1.htm" + "?boxid=" + boxid + "&projectName=" + projectName"; **
And back to the link itself, you shouldn't use an entity for the "&"
Hope I could help

.
The "getUrlVars()" method you use here would have been helpful to me on my first project, where I had a password protected page (the password was less for actual protection; as my father always says, "locks only keep honest people out"). I ended up needing to set up a localhost server.... backstory over...
*it might be
file:///c/....
**You could actually cut that part out, making it
linkURL = "C:\Users\Geri\Desktop\test_1.htm?boxid=" + boxid + "&projectName=" + projectName";