is there some way to define the properties of a window in an ordinary link? I mean, if I have a text linked to some other page, and it opens as a new window, and I don't want the status bar and all that other crap, and I want to set the size of it, as well.
I know that's possible with JavaScript, but I have no idea how to do that with simple HTML. I know there is a way, and I've seen it before somewhere, but I can't remember what it was.
If there's a way to do this with just HTML, I don't know of it. My references all point to JS. In a post below this one I'll give an example of code which does what you want. It's not too complicated, and works for both major browsers.
Then, in the body of your document where your pertinent links are going to be, have something like:
<a href="javascript:newWindow1()">Image #1 — Lord of the Rings</a>
<a href="javascript:newWindow2()">Image #2 — The One Ring</a>
<a href="javascript:newWindow3()">Image #3 — The Nazgűl</a>
Image #1 will open in a window with dimensions 457 by 557 with no scrollbars. Image #2 will open in a window of dimensions 432 by 351 with no scrollbars. Image #3 will be in a window 524 pixels wide and 650 pixels high, and WILL have scrollbars on account of the scrollbars=yes deal. By default NONE of these windows will have toolbars of any sort.