pop-up window:
Quote:
<script>
var win = window.open("url_to image", "windowTitle", "some_features");
win.focus();
</script>
|
"
windowTitle" -> set a title to the window (do not insert spaces)(this argument is optional)
"
some_features" -> window features, like width, height and so on (this argument is optional)
hope this helps.