I googled for some java script and this looks like the best option.
This will go in the head:
<SCRIPT LANGUAGE="JavaScript">
<!--
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "',
'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar
=1,resizable=1,width=400,height=400');");
}
-->
</script>
The variables are in blue. 1 means yes, and 0 means no. If you don't
want your window to show your url, location=0. If you don't want a
toolbar, toolbar=0.
This will be how you build your link:
<a href="javascript:popUp('http://url.com')">Open the Popup
Window</a>
And enter your urlJames Orr39088.9353935185
|