cms0003 wrote:
Quote:
Now I'm even more confused.
What javascript code should I use for this then? Once again.....
On the contact_us.html page, there is a link that (when clicked) opens
feedback.html in a pop-up window. Feedback.html is an email form that (when
submitted), sends the info. through sendmail.php to my email account. |
Murray gave you the correct code to open a new window. The problem with
your code is that feedback.htm has this BODY tag:
<body
onLoad="MM_openBrWindow('feedback.htm','LPalm','wi dth=425,height=350')">
As soon as feedback.htm loads in its popup window, the onLoad event
fires, which says to open a new window containing feedback.htm.
Gary