diff --git a/xpfe/global/resources/content/tasksOverlay.js b/xpfe/global/resources/content/tasksOverlay.js index c4e226877cd7..c67159d65639 100644 --- a/xpfe/global/resources/content/tasksOverlay.js +++ b/xpfe/global/resources/content/tasksOverlay.js @@ -55,7 +55,7 @@ function toOpenWindowByType( inType, uri ) if ( topWindow ) topWindow.focus(); else - window.open(uri, "", "chrome,menubar,toolbar,resizable"); + window.open(uri, "_blank", "chrome,menubar,toolbar,resizable"); } function CycleWindow( inType, inChromeURL ) @@ -75,7 +75,7 @@ function CycleWindow( inType, inChromeURL ) if ( topWindowOfType == null ) { dump( " no windows of this type so create a new one \n"); - window.open( inChromeURL, "","chrome,menubar,toolbar,location,status,resizable" ); + window.open(inChromeURL, "_blank", "chrome,menubar,toolbar,location,status,resizable"); return; } @@ -118,7 +118,7 @@ function CycleWindow( inType, inChromeURL ) else { dump("open window \n"); - window.open( inChromeURL, "","chrome,menubar,toolbar,location,status,resizable" ); + window.open( inChromeURL, "_blank","chrome,menubar,toolbar,location,status,resizable" ); } }