Forum Moderators: open
<a href="somepage.html" target="_blank">Link</a>
<a href="somepage.html" target="new window">Link</a>
Or Javascript:
<a href="somepage.html" onClick="window.open('somepage.html','newWin','width=500,height=500,resizable'); return false;">Link</a>
I ask because using target as in the first two methods will most likely give you that warning, I've never had such problems with windows opened via Javascript.
But I could be wrong . . .