PDA

View Full Version : Trying to open a new browser window


mosca62
12-12-2002, 09:47 PM
Hi, I'm trying to open a new browser window and keep the parent window open. How do I do? Here's what I have completed.

<table width="166" cellpadding="4" cellspacing="1" border="1" bordercolor="#D6D3CE" vspace="8" hspace="8" align="right" bgcolor="#F1F0E6">
<tr>
<td> <a class="smair" href="javascript:location='standards.html';MM_openBrWindow('http://www.phoneyurl.com/includes/air/standards.html','standards','width=740,height=500')"><img src="/images/air/standards_thumb.gif" width="150" height="75" border="1" vspace="4" alt=""></a><br>
<font face="Verdana,Arial,Helvetica"
size="1">Click to view larger image from the interactive gallery.<br>
</font></td>
</tr>
</table>

Any help would be appreciated.

Thanks

Steven_Smith
12-12-2002, 10:14 PM
href="javascript:location='standards.html';MM_openBrWindow('http://www.phoneyurl.com/includes/air/standards.html','standards','width=740,height=500')"

try


href="javascript:window.location='standards.html';window.open('http://www.phoneyurl.com/includes/air/standards.html','standards','width=740,height=500')"


Your Parent window will goto 'standards.html' and the 'POP' window will goto 'www.phoneyurl.com/includes/air/standards.html'

Steve

mosca62
12-12-2002, 11:23 PM
Thanks for your help!