Combined vs. separate document.write in new window
I'm using JS to open a NEW window and write stuff dynamically with a loop. Performance-wise, should one concatenate the HTML string first and write it after the loop completes, or document.write() it each time the loop runs.