Forum Moderators: open
when a user click on the page (anywhere)
For starters, you could try
<body onClick="newWin();">
Where newWin() is a Javascript function that opens a new window. I don't know if this qualifies as "anywhere" so you might have to apply the same to your links. Add a generic unobtrusive function that applies to both body and all links.
Not a great idea for your end users, but if you must, you must.