Hi druber,
I'm not an HTML/JavaScript expert, but if you're still looking for a way to open a link into a new window of a specific size, unfortunately I don't think there's a way to do it in "pure" HTML, at least not via the standard anchor tag [
<A ... TARGET=____
> ...
</A>].
However, you should be able to do this with "enhanced" HTML, e.g., via JavaScript's window.open() method [
window.open('____.html' , '____' , 'height=___,width=___,...'
)]. For possible JavaScript solutions, see the related
finding a frameset thread in this Forum for some pointers to various JavaScript FAQs and other resources.
Regards, and good luck,
-Paul