| javascript Programming Glossary: l_widthJavaScript window.open only if the window does not already exist http://stackoverflow.com/questions/528671/javascript-window-open-only-if-the-window-does-not-already-exist  is function launchApplication l_url l_windowName var l_width screen.availWidth var l_height screen.availHeight var l_params.. 'status 1'  ' resizable 1'  ' scrollbars 1'  ' width ' l_width  ' height ' l_height  ' left 0'  ' top 0' winRef window.open.. l_windowName l_params winRef.moveTo 0 0 winRef.resizeTo l_width l_height EDIT Thanks for the replies I modified the suggestions.. 
 |