The code is as follows (use, explanation, and related instructions are all in the comments):
/**
* ======================================================
* This program can be copied, modified, and disseminated freely, and the following information may not be deleted. If used for commercial purposes, you must have the consent of the original author before you can use it.
* ===============================================
* Program name: ForceWindow(@)
* Description: "Break through" the ad blocking software and force pop-ups.
* Version: 1.0.0
* Created on January 19, 2004
* Modified: January 19, 2004
* File name:
* Author: Zhong Zhong
* Email address: zz@ zz315@
* Copyright Statement: This program belongs to , and the copyright belongs to the author.
* For details about the iClass plan, see: /forum/?threadid=14811
* =================================================
*/
/**
* Define ForceWindow class constructor
* No parameters
* No return value
*/
function ForceWindow ()
{
= ;
= ("FORM");
= "_blank";
= "post";
(, [0]);
}
/**
* Define open method
* Parameters sUrl: string, URL to open the window.
* No return value
*/
= function (sUrl)
{
= sUrl;
();
}
/**
* Instantiate a ForceWindow object and serve as a child of the window object for easy call
* After definition, you can use it like this: ("URL");
*/
= new ForceWindow();
/**
* The windows popped up with this program will not be blocked by the ad blocking software, but there is one disadvantage: you cannot customize the appearance like the popped up window.
* You can of course instantiate a ForceWindow object before use:
* var myWindow = new ForceWindow();
* Use this way:
* ("URL");
* Browsers tested by this program: IE 5+, Firefox 1.0, Mozilla 1.7.5, Netscape 7.2, Opera 7.23
* Friendly reminder: If you use this program to force pop-up advertisements, please think more about the views of the viewers!
*/