Rather than cluttering my page with a bunch of technical stuff, I have created a table with javascript links to open a specific html page in a new window. The first link opens a new window perfectly but the 4 remaining links, coded the same, do nothing. Here is the code used on the first AND all subsequent links. Each link is in its own table cell.
<td style="font-family: Arial; font-weight: bold;" valign="middle" width="140" align="left" height="">
<valign="top">
<div style="text-align: center;"><a href="javascript: void(0)" onclick="window.open('', 'windowname1', 'width=300, height=500'); return false;"><font size="1">LEARN<br/>MORE</font></a>
</div></valign="top"></td>
Suggestions on how to open windows 2 through 5?
<td style="font-family: Arial; font-weight: bold;" valign="middle" width="140" align="left" height="">
<valign="top">
<div style="text-align: center;"><a href="javascript: void(0)" onclick="window.open('', 'windowname1', 'width=300, height=500'); return false;"><font size="1">LEARN<br/>MORE</font></a>
</div></valign="top"></td>
Suggestions on how to open windows 2 through 5?