heres a code that will display an alert window if the user is using a popup blocker.
You could change this code and make it so that instead of making it an alert if the user uses a popup blocker you could send the window to a different page so they dont get to see your stuff.
< script type="text/j*a*va*script" >
//<![CDATA[
var mypopup=window.open("","win1",'width=100,height=10 0');
if (mypopup){
mypopup.close();
alert("You do not have unrequested popup blocking on!");
}
else
alert("You have unrequested popup blocking on!");
//]]>
< /script >
|