Ok so you know how to put an image with html
<img src="somedirectory/picture.gif">
you just add in that tag:
onLoad="window.open()"
it looks like this:
<img src="somedirectory/picture.gif" onLoad="window.open()">
now if you leav it like that it will open a blank window
so to specify the url and size and whatever else
in the "()" of window.open() you add three series of this single quotes seperated by a comma like this:
'1','2','3'
it will then look like this
window.open(' ',' ',' ')
now replace #1 with the url you want
now replace #2 with a name you want to give that page (if you dont want to get fancy, just leave this one empty)
now replace #3 with stuff like this (you can use 1, 2 or how many you want):
width=650,height=768,toolbar=1
Bookmarks