How to create a link that opens new window with a specific size?

Do you know how I can create a link that opens a new window with a specific size. Is there any way to do it?<br />
<br />
Thanks<br />
<br />
AgentWebRanking<!--content-->window.open("popWin","width=600, height=400")<br />
<br />
<br />
<br />
hope it helps<br />
chris<pixelmonkey>:monkey:<!--content-->Here is another example:<br />
<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/# onclick="window.open('yourwebpage.html','mywindow','width=450,height=300')">Click Here</a><br />
<br />
<br />
replace 'yourwebpage.html' with the URL of your web page.<br />
<br />
Regards,<br />
Kevin<!--content-->Here's the code for a search engine submission form:<br />
<FORM METHOD=GET ACTION="http://astalavista9.box.sk/cgi-bin/robot"><br />
<br />
<table><tr><br />
<br />
<td align=center width=400><br />
<br />
<INPUT TYPE=TEXT VALUE="" NAME="srch" MAXLENGTH=100 SIZE=30><br />
<INPUT TYPE=submit NAME="submit" VALUE=" search "><br />
<INPUT TYPE=hidden NAME="project" VALUE="robot"><P><br />
<INPUT TYPE=hidden NAME="gfx" VALUE="robot"><br />
<P><br />
<br />
I want to make the above form results open in a new browser window.<br />
Can someone please help me by telling me where the<br />
window.open("popWin","width=600, height=400") code should be inserted?<!--content-->
 
Back
Top