educational

A Console Comeback

Recently, I wrote an editorial about Webmaster's changing attitudes towards consoles, those ubiquitous new Windows that pop-up (and under) the browser Window you are currently using. This inspired some thoughtful responses from XBiz readers that I would like to share, along with some copy-n-paste code:

I finished off the previous article stating that while I believe surfers hate an excessive amount of consoles, one targeted console per site should never be a problem, and the fact that they do increase revenues when properly and moderately used should be an online marketer's first concern. The bottom line should always be 'the bottom line' — and when properly implemented, consoles can increase your revenues.

In response, TheMarketingGuy had this to say: "While it's possible that a percentage of the users who responded "[because] Surfers Hate Them" actually tested the technique on their own surfers visiting their site and came to the above conclusion based on the results of that test, I think it's more likely that a far greater percentage based that conclusion on "common knowledge" on the Internet, which is a shame.

Those who responded "[because] I Hate Them" are an entirely different story... If they're using that as a way to position themselves as "different" from their competitor, then I suppose that's fine... But I doubt it. If I could ask them a question it would simply be "who are you making your site for?" Again, I think everything you said is true. Properly used, they can be extremely effective, but the only way anyone will know for sure if they'll be effective for them is to toss the assumptions to the side and do a little testing."

jah had this to add: "I definitely agree that used in moderation, the console would be a great marketing tool. However, the problem lies with knowing what the site you have taken your visitor to is doing. Some are popping up another 3 Consoles, others are trying to download some software onto your computer, or both. Before you know it, a never ending pop up hell is often started. RESEARCHING your partners and finding out how far the "chain" will go is vital, to prevent an almost never ending nightmare."

I believe that the lesson to be learned here (whether you personally use consoles or not) is to test not only your own site, but what happens to surfers who leave your site to visit a sponsor or other linked site. If you launch an exit console or two, and the destination site launches an enter console or two, the surfer will most likely become overwhelmed, and if your business model relies on repeat visitors, this will work against you.

Rickyracer added "I voted in the poll and do not use consoles because surfers hate them. What began as a great idea as a tool to welcome or pass along legit info to surfers was soon abused and manipulated for self serving interests and eventually for the adult biz, became CJ's for too many sites, thus giving a bad rap to responsible users of Pop-Ups. I'd rather have the surfer join one of our sites or buy some our merchandise rather than make a few bucks off a sponsor anyway. If we want to promote a sponsor, we'll give him a link on our site."

To which burek replied "there is nothing wrong with bit of pop-up or pop-under. As long as you have full control of it, i.e.: loading stuff that you control, off your server. For example, special promotions, news, deals, etc. You name it. For your own site(s), if you don't like sending traffic to sponsors or such. Having smart, useful pop-ups will just as well build credibility with customers:"

A Better Idea
Given this thoughtful input, I have reconsidered the use of consoles, and while I still believe that they are an effective method of increasing revenues, I have a few suggestions on some 'more productive' uses for them. As always, your mileage may vary, and these ideas may not fit in with your operation, they will allow you to gain the benefits of using pop-ups, without incurring some of their drawbacks.

For instance, if you have a pay site, targeted pop-ups are a great way to cycle traffic through your offerings, assuming that you run more than one site. There is nothing new in this, and the common practice of using the last console to send traffic to outside sites (the pay site's own sponsors) will not likely end soon, but perhaps a better use of pay site pop-ups might be to fire an email collection box console for traffic exiting the 'Join' page, and why not a console with a 'special' discounted renewal offer for ex-members leaving your 'Cancel' page? Both of these 'in-house' solutions allow you to profit from existing traffic without losing the surfer to another site.

I still believe that all sites can increase revenues while 'helping' visitors by popping one small text only exit console that offers surfers an alternative content source. This will guide much of your 'mistaken' traffic (those surfers who click the wrong link, and mistakenly enter your site. Try half a dozen or so big, bold text links that say simply: TEENS, ASIANS, AMATEURS, etc. Quick loading and inoffensive, these consoles can be quite productive.

Another of my favorite uses for consoles involve the so-called 'stealth' or pop-under, which pops a new window that is only visible after the surfer closes his current browser window. While I used to do quite well with these when promoting a sponsor site, I now think that other types of programs would benefit from this approach, and the reason for this is simple: if the main browser window is closed, it's likely that the prospect has already blown his or her load, and might be interested in something more than more porn — like one of the popular 'cleaner' programs, which may have great appeal to someone who was just scouring the Web's nether regions for illicit material.

On a similar subject, a discussion on the 'Traffic Signals' board centered around the 'best type of pop-under' consoles, and provided us with two different approaches to solving the same problem. Our own junkiefred (https://www.hotthumblinks.com/) provided this simple pop-under script that is placed between your HEAD /HEAD> tags:

SCRIPT language="Javascript">
myWindow=window.open('https://www.twistedchicks.com/', 'winin','toolbar=0,menubar=0,scrollbars=0,status=0,resizable=0,width=540,height=580');

myWindow.blur

self.focus();

/SCRIPT>

danndeb (Danny https://hits2you.hypermart.net) then provided us with this easy copy-and-paste pop-under script. Simply insert the following code into your HEAD /HEAD tags. Change var popunder to the URL you want to pop, and set at 0 to pop the console every time the page loads, or 1 to pop it only once per session. This is a great feature that uses cookies to help prevent multiple copies of your console from 'stacking up' behind the main browser window. The second example inherits the launching window's properties, but will only fire once per visit, if you so desire.

SCRIPT>

var popunder="https://hits2you.hypermart.net"

//Pop-under only once per browser session? (0=no, 1=yes) //Specifying 0 will cause popunder to load every time page is loaded var once_per_session=1

///No editing beyond here required/////

function get_cookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) { // if cookie exists
offset += search.length
// set index of beginning of value
end = document.cookie.indexOf(";", offset);
// set index of end of cookie value
if (end == -1)
end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}

function loadornot(){
if (get_cookie('popunder')==''){
loadpopunder()
document.cookie="popunder=yes"
}
}

function loadpopunder(){
win2=window.open(popunder)
win2.blur()
window.focus()
}

if (once_per_session==0)
loadpopunder()
else
loadornot()

/SCRIPT>

The first example allows you to specify the new window's properties, including size and features, and it will pop every time the 'launching' page loads. The second example inherits the launching window's properties, but will only fire once per visit, if you so desire. In either case, don't forget to replace the example URL with one of your own.

If you're one of those Webmasters who overuse consoles, perhaps you should consider scaling back to one. If you're one of those who doesn't use consoles, then perhaps you might want to try a pop-under or small exit console, after all, you have nothing to lose, and everything to gain, and with the above code snippets, it's as easy as copy-n-paste! ~ Stephen

Copyright © 2025 Adnet Media. All Rights Reserved. XBIZ is a trademark of Adnet Media.
Reproduction in whole or in part in any form or medium without express written permission is prohibited.

More Articles

opinion

WIA Profile: Lainie Speiser

With her fiery red hair and a laugh that practically hugs you, Lainie Speiser is impossible to miss. Having repped some of adult’s biggest stars during her 30-plus years in the business, the veteran publicist is also a treasure trove of tales dating back to the days when print was king and social media not even a glimmer in the industry’s eye.

Women in Adult ·
opinion

Fighting Back Against AI-Fueled Fake Takedown Notices

The digital landscape is increasingly being shaped by artificial intelligence, and while AI offers immense potential, it’s also being weaponized. One disturbing trend that directly impacts adult businesses is AI-powered “DMCA takedown services” generating a flood of fraudulent Digital Millennium Copyright Act (DMCA) notices.

Corey D. Silverstein ·
opinion

Building Seamless Checkout Flows for High-Risk Merchants

For high-risk merchants such as adult businesses, crypto payments are no longer just a backup plan — they’re fast becoming a first choice. More and more businesses are embracing Bitcoin and other digital currencies for consumer transactions.

Jonathan Corona ·
opinion

What the New SCOTUS Ruling Means for AV Laws and Free Speech

On June 27, 2025, the United States Supreme Court handed down its landmark decision in Free Speech Coalition v. Paxton, upholding Texas’ age verification law in the face of a constitutional challenge and setting a new precedent that bolsters similar laws around the country.

Lawrence G. Walters ·
opinion

What You Need to Know Before Relocating Your Adult Business Abroad

Over the last several months, a noticeable trend has emerged: several of our U.S.-based merchants have decided to “pick up shop” and relocate to European countries. On the surface, this sounds idyllic. I imagine some of my favorite clients sipping coffee or wine at sidewalk cafés, embracing a slower pace of life.

Cathy Beardsley ·
profile

WIA Profile: Salima

When Salima first entered the adult space in her mid-20s, becoming a power player wasn’t even on her radar. She was simply looking to learn. Over the years, however, her instinct for strategy, trust in her teams and commitment to creator-first innovation led her from the trade show floor to the executive suite.

Women in Adult ·
opinion

How the Interstate Obscenity Definition Act Could Impact Adult Businesses

Congress is considering a bill that would change the well-settled definition of obscenity and create extensive new risks for the adult industry. The Interstate Obscenity Definition Act, introduced by Sen. Mike Lee, makes a mockery of the First Amendment and should be roundly rejected.

Lawrence G. Walters ·
opinion

What US Sites Need to Know About UK's Online Safety Act

In a high-risk space like the adult industry, overlooking or ignoring ever-changing rules and regulations can cost you dearly. In the United Kingdom, significant change has now arrived in the form of the Online Safety Act — and failure to comply with its requirements could cost merchants millions of dollars in fines.

Cathy Beardsley ·
opinion

Understanding the MATCH List and How to Avoid Getting Blacklisted

Business is booming, sales are steady and your customer base is growing. Everything seems to be running smoothly — until suddenly, Stripe pulls the plug. With one cold, automated email, your payment processing is shut down. No warning, no explanation.

Jonathan Corona ·
profile

WIA Profile: Leah Koons

If you’ve been to an industry event lately, odds are you’ve heard Leah Koons even before you’ve seen her. As Fansly’s director of marketing, Koons helps steer one of the fastest-growing creator platforms on the web.

Women in Adult ·
Show More