Hmmm, I've never done the target option so I have no fucking clue.
I'll fiddle around with php, but the best I could figure out with simple javascript and html is as follows....
http://homegrownforums.com/bleet/Click link, javascript popup appears which redirects to the page which you set it as.
Alternatively, I'll have a fiddle, but I've never seen this done before...
The code for that is...Insert in your main page;
CODE <script language="JavaScript">
function popup_window() {
window.open('Link to page with redirection script in here', 'popup', 'width=800,
height=600, menubar=no, scrollbars=no, toolbar=no, location=no, resizable=yes, top=, left=');
}
</script>
<a href="" onclick="popup_window(''); return false;">Click this link</a>
Then for the redirection just add
CODE <script language="JavaScript">
window.location = 'http://link to desired location here';
</script>
This probably is not what you want, but whichever