if you want the window to be a defined size, then you have to use a javascript. but what you have to do is create a new page with the video that you want played.. in the new html page, it would be formatted similar to this:
<html>
<head>
<title>Quicktime Movie</title>
</head>
<body>
<embeded src="yourmoviename.mov" height="240" width="320" autoplay="true">
</body>
</html>
- <html>
- <head>
- <title>Quicktime Movie</title>
- </head>
- <body>
- <embeded src="yourmoviename.mov" height="240" width="320" autoplay="true">
- </body>
- </html>
the autoplay="true" parameter is optional, not necessary. then save that as like movie.html or something.. so then your link to open that window would look like this:
<a href="#stayhere" onclick="window.open('movie.html', 'movieWindow', 'height=275, width=350, statusbar=no, toolbar=no, menubar=no, scrollbars=no, resizable=no')">Play Movie</a>
<EDIT> If you want to have a button to close your newly created window, edit the html similar to this:
<html>
<head>
<title>Quicktime Movie</title>
</head>
<body>
<embeded src="yourmoviename.mov" height="240" width="320" autoplay="true">
<br><br>
<input type="button" value="Close Window" onclick="javascript: window.close()">
</body>
</html>
- <html>
- <head>
- <title>Quicktime Movie</title>
- </head>
- <body>
- <embeded src="yourmoviename.mov" height="240" width="320" autoplay="true">
- <br><br>
- <input type="button" value="Close Window" onclick="javascript: window.close()">
- </body>
- </html>
and then i would edit the link to make the window height bigger, maybe to 375</EDIT>
<EDIT++>If you want your page to be xhtml compliant (the movie page), then you'd have to edit your html even more.. add a !doctype tag, change <br> to <br /> and not use the <embed> tag. instead, you'd use an <object> tag.. an example of how to do this AND to make it compatible with all versions of IE, go here:
http://realdev1.realise.com/rossa/rende ... ktime.html
k i'm done, hope this helps

</EDIT++>

"In a world without walls and fences, who needs Windows and Gates?"