Forum Moderators: open
function openWin(page)
{
myWin= open(page, "popupWindow",
"width=475,height=670,status=no,toolbar=no,scrollbars=yes,menubar=no,screenX=0,screenY=0,");
}
and then
<a href="javaScript:openWindow('path to file')">Link Name</a>
problem: only one can be opened at a time, how can i tweak the code so that i can have multiple of these fitted windows at the same time
<a href="javaScript:openWindow('path to file','win1')">Link Name</a>
<a href="javaScript:openWindow('path to file','win2')">Link Name</a>-------
function openWin(page, name)
{
myWin= open(page, name,
...etc...