Link to home
Start Free TrialLog in
Avatar of MarleneAyers
MarleneAyers

asked on

Firefox error when opening popup window

When I open a new window from Firefox, the popup window open ok but the parent window is replace with this message [object Window]. The inital call to open window is made from flash.
FROM FLASH getURL("javascript:Launch(''http://www.magnoliaparkburbank.org/directory.html', 400, 300)");
 
 
HTML CODE   function Launch(page, width, height) { 
		OpenWin = window.open(page, "magPark", "toolbar=no, menubar=no ,location=no, scrollbars=yes, resizable=yes, width=" + width + ", height=" + height + ", top=" + (screen.height/2 - height/2) + ", left=" + (screen.width/2 - width/2) + "\""); 
	} 

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Michel Plungjan
Michel Plungjan
Flag of Denmark image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial