I used the javascript off of a tutorial on Kirupa.com to open a centered pop-up window, but need the java to open multiple windows or close the one open upon clicking anothe flash button. I could also have the multiple windows "quicktimes" open at once. The script in my Flash button: on (rollOver) { medical.gotoAndPlay(2); } on (rollOut) { medical.gotoAndPlay(13); } on (release) { //customize the window that gets opened // 0 equals NO. // 1 equals YES. address = "http://www.post-op.com/web/investment.htm"; target_winName = "lial"; width = 340; height = 360; toolbar = 0; location = 0; directories = 0; status = 0; menubar = 0; scrollbars = 0; resizable = 0; //sends data back to the function openWinCentre(address, target_winName, width, height, toolbar, location, directories, status, menubar, scrollbars, resizable); } The script in my HTML document: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>::: Post-Op :::</title> <script language="javascript" type="text/javascript"> function investement() { /* begin configuration */ var url = "investment.htm"; var w = "330"; var h = "420"; var menu = "no"; var scroll = "no"; var tool = "no"; var location = "no"; var resize = "no"; /* end configuration */ var winl = (screen.width - w) / 2; var wint = (screen.height - h) / 2; winprops = 'width='+w+', height='+h+', top='+wint+', left='+winl+', menubar='+menu+', scrollbars='+scroll+', toolbar='+tool+', location='+location+', resizable='+resize+'' window.open(url, 'investement', winprops); window.open('acting.html') } </script> </head> <body bgcolor="#000000"> <div align="center"> <p> <embed src="http://www.post-op.com/web/investement.mov" width="320" height="256" align="absmiddle"></embed></p> <p> <img src="investment_spacer.jpg" width="300" height="41" align="right"> </p> </body> </html> From a little research I could find that I need a getURL ("javascript:window.close(investment.htm);"); but need to know where to put the java and if its needed for all the other window names when called. Thanks for your help. Brad