zippa
Feb 5th, 2001, 05:50 PM
I have 2 scripts like this:
<script language="JavaScript">
function openWindow (url) {
popUpWin = window.open(url,'blah','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable =0,width=510,height=520');
if (navigator.appName == 'Netscape') {
popUpWin.focus() ;
}
}
</script>
<a
href="javascript:openWindow('httpL//whatever')">
Eric</a><br>
on one page. The width and height are different, but when clicked, they are the same size. Any ideas?
Also: I have 2 <div> tags, and I want them side by side. But one always appears below the other. How can I fix this?
Thanks.
<script language="JavaScript">
function openWindow (url) {
popUpWin = window.open(url,'blah','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable =0,width=510,height=520');
if (navigator.appName == 'Netscape') {
popUpWin.focus() ;
}
}
</script>
<a
href="javascript:openWindow('httpL//whatever')">
Eric</a><br>
on one page. The width and height are different, but when clicked, they are the same size. Any ideas?
Also: I have 2 <div> tags, and I want them side by side. But one always appears below the other. How can I fix this?
Thanks.