<script>
function win(){
<!--
thWin = window.open('filename.html','newWindow','width=400,height=400,resizable=no,scrollbars=no,menubar=no,toolbar=no,directories=no,location=no,status=no');
//-->
}
</script>
<a href="javascript:win()">**Link goes here**</a>
<script>
function win(w, h, name){
<!--
thWin = window.open([name]+'.html','newWindow','width='+[w]+',height='+[h]+',resizable= no,scrollbars=no,menubar=no,toolbar=no,directories=no,location=no,status=no');
//-->
}
</script>
<a href="javascript:win(200, 20, 'swishOne.html')">**Link one goes here**</a>
<a href="javascript:win(20, 300, 'swishTwo.html')">**Link two goes here**</a>
<a href="javascript:win(200, 200, 'swishThree.html')">**Link three goes here**</a>
Originally posted by web guru
Na it dosent matter, I have tried the script out in between the <body> tags and it works fine.



