Hi all. I have a webpage that I have two different links to open new windows. Is it possible to have them open in different sizes? The first one I want to open as a standard new window size and the second as described below. Here's what I have in my HTML but both windows are opening in the size/format of the 2nd window. I tried putting in a different width and height for the first one but it still opened with the formatting of the second link.
<script language="javascript">
function openNewWindow(url) {window.open(url,'newPage','scrollbars=yes,resizable=yes');
}
</script><a href="javascript
penNewWindow('
<script language="javascript">
function openNewWindow(url) {window.open(url,'newPage','scrollbars=no,resizable=no,width=600,
height=430');
}
</script><a href="javascript
penNewWindow('
Any help is greatly appreciated. Thanks.
<script language="javascript">
function openNewWindow(url) {window.open(url,'newPage','scrollbars=yes,resizable=yes');
}
</script><a href="javascript
<script language="javascript">
function openNewWindow(url) {window.open(url,'newPage','scrollbars=no,resizable=no,width=600,
height=430');
}
</script><a href="javascript
Any help is greatly appreciated. Thanks.