Using the following to create a popup window for an application:-
Then the link to call the function...Code:<script type="text/javascript">
function popup() {window.open('an application file', '','scrollbars=1,statusbar=0,resizable=0,width=450,height=580,left=450,top=80');}
</script>
I require to create another popup that will have different dimensions - how should this secondCode:<li><a href="javascript:popup()">Here is the popup window.</a></li>
function popup()be identified from the first one so that they can be attached to different links?. :o

