Connecting Tech Pros Worldwide Forums | Help | Site Map

Javascript:LaunchCenter

KJ
Guest
 
Posts: n/a
#1: Jul 20 '05
Now I'm not into annoying people with popup ads, I'm a webmaster of a
church website and I wanted to know if there was a way to get around
these popup stoppers and use a function like launchCenter:

Code Below:



function launchCenter(url, name, height, width) {
var str = "height=" + height + ",innerHeight=" + height;
str += ",width=" + width + ",innerWidth=" + width;
if (window.screen) {
var ah = screen.availHeight - 30;
var aw = screen.availWidth - 10;

var xc = (aw - width) / 2;
var yc = (ah - height) / 2;

str += ",left=" + xc + ",screenX=" + xc;
str += ",top=" + yc + ",screenY=" + yc;
str += ",scrollbars,resizable,toolbar=no,menubar=no,locat ion=no";
}
ww = window.open(url, name, str);
}


People are complaining that when I use that function to display new
hyperlink pages that if they have a program called "Popup Stopper" my
hyperlink pages will not open up. But I'm using the Google toolbar
popup blocker and when I click on hyperlinks new windows open up fine.

Is there anyway in Javascript I can get new windows to show up the
same even with Popup Stopper?

Thanks for any suggestions. I hate to mess up my design because a few
people are using Popup stopper.

HikksNotAtHome
Guest
 
Posts: n/a
#2: Jul 20 '05

re: Javascript:LaunchCenter


In article <d83a9214.0309251651.7931997b@posting.google.com >,
klj_mcsd@hotmail.com (KJ) writes:
[color=blue]
>Is there anyway in Javascript I can get new windows to show up the
>same even with Popup Stopper?[/color]

No.
[color=blue]
>Thanks for any suggestions.[/color]

Stop using popups.
[color=blue]
>I hate to mess up my design because a few
>people are using Popup stopper.[/color]

Stop annoying them and they wont need a popup stopper.
--
Randy
Phrederik
Guest
 
Posts: n/a
#3: Jul 20 '05

re: Javascript:LaunchCenter



"KJ" <klj_mcsd@hotmail.com> wrote in message
news:d83a9214.0309251651.7931997b@posting.google.c om...[color=blue]
> Now I'm not into annoying people with popup ads, I'm a webmaster of a
> church website and I wanted to know if there was a way to get around
> these popup stoppers and use a function like launchCenter:[/color]

*** N O ! ! ! ***


Closed Thread