Question on sizing windows when using href

windows

Guest
Hi,<br />
<br />
Wonder if anybody can help<br />
<br />
I am trying to get a new window to open up when a thumbnail sized image is clicked on<br />
<br />
At the present time it sort of half works in that it opens up the image on a blank page but not sized to the dimensions that I have put in<br />
<br />
Is it actually possible to get a sized window to open without using javascript, whilst I have access java code that opens up a perfectly sized window, I wan to avoid using javascript in case viewers have javascript switched off<br />
<br />
Any help or suggestions would be appreciated<br />
<br />
Thanks Mel<br />
<br />
<br />
Code I am using<br />
================<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"./images/3_2.jpg"<br />
target="_blank" onClick="window.open('./images/3_2.jpg'width=400,height=300,scrollbars=yes,left=100,top=200,screenX=100,screenY=200');return false"></a><br />
<img src=http://www.htmlforums.com/archive/index.php/"./images/3_2.jpg" border=0 width=150 alt="Photo of <br />
"></a<!--content-->The close bracket on the </a> is actually there so this is not the problem<br />
<br />
Mel<!--content-->you have to use javascript to get a certain sized window. regluar html has no control over that.<!--content-->Thanks for the reply,<br />
<br />
So assuming I have to use javascript to get sized window I guess I should be looking around for a bit of coding to put into the noscript tags to allow for people who have javascript switched off ?<br />
<br />
Mel<!--content-->jsu tuse <br />
<br />
<noscript><br />
<a href=http://www.htmlforums.com/archive/index.php/"link.html" target="_blank"><br />
</noscript><br />
<br />
but why worry about that 2% that have it turned off.<!--content-->Hi,<br />
<br />
Thanks for the bit of code, take your point about the 2% I though it would be a lot higher, hence the worry<br />
<br />
Regards<br />
Mel<!--content-->
 
Back
Top