HTML new window popup?

ALVIN

New member
On my website, I want to allow my consumers to click on the image to reopen another window separately.
How do i add the img src for the current html I have?
But when it reopens, the size is too small. Is there a way to make it open to the picture's pixel size?

my current html:
<A
HREF="popupbasic.html"
onClick="return popup(this, 'notes')">my popup</A>
here's my adjustment, now it work fine but.
when i click it, the new window opens at the img original pixel size. but i want to force it to open at a certain x/x pixel size. how can i do that? thanks

<a href="/T1515_description.jpg" onclick= "return popup ('t1515_description.jpg','','850','675', 'resizable, scrollbars, status, toolbar')"<img src="t1515.jpg" border="0"></a>
 
Back
Top