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

profile

WIA Profile: Lexi Morin

Lexi Morin’s journey into the adult industry began with a Craigslist ad and a leap of faith. In 2011, fresh-faced and ambitious, she was scrolling through job ads on Craigslist when she stumbled upon a listing for an assistant makeup artist.

Women In Adult ·
profile

Still Rocking: The Hun Celebrates 30 Years in the Game

In the ever-changing landscape of adult entertainment, The Hun’s Yellow Pages stands out for its endurance. As one of the internet’s original fixtures, literally nearly as old as the web itself, The Hun has functioned as a living archive for online adult content, quietly maintaining its relevance with an interface that feels more nostalgic than flashy.

Jackie Backman ·
opinion

Digital Desires: AI's Emerging Role in Adult Entertainment

The adult industry has always been ahead of the curve when it comes to embracing new technology. From the early days of dial-up internet and grainy video clips to today’s polished social media platforms and streaming services, our industry has never been afraid to innovate. But now, artificial intelligence (AI) is shaking things up in ways that are exciting but also daunting.

Steve Lightspeed ·
opinion

More Than Money: Why Donating Time Matters for Nonprofits

The adult industry faces constant legal battles, societal stigma and workplace challenges. Fortunately, a number of nonprofit organizations work tirelessly to protect the rights and well-being of adult performers, producers and industry workers. When folks in the industry think about supporting these groups, donating money is naturally the first solution that comes to mind.

Corey D. Silverstein ·
opinion

Consent Guardrails: How to Protect Your Content Platform

The adult industry takes a strong and definite stance against the creation or publication of nonconsensual materials. Adult industry creators, producers, processors, banks and hosts all share a vested interest in ensuring that the recording and publication of sexually explicit content is supported by informed consent.

Lawrence G. Walters ·
opinion

Payment Systems: Facilitator vs. Gateway Explained

Understanding and selecting the right payment platform can be confusing for anyone. Recently, Segpay launched its payment gateway. Since then, we’ve received numerous questions about the difference between a payment facilitator and a payment gateway. Most merchants want to know which type of platform best meets their business needs.

Cathy Beardsley ·
opinion

Reinventing Intimacy: A Look at AI's Implications for Adult Platforms

The adult industry has long revolved around delivering pleasure and entertainment, but now it’s moving into new territory: intimacy, connection and emotional fulfillment. And AI companions are at the forefront of that shift.

Daniel Keating ·
profile

WIA: Sara Edwards on Evolving Clip Culture and Creator Empowerment

Though she works behind the scenes, Sara Edwards has had a front-row seat to the evolution of adult content creation. Having been immersed in the sector since 1995, she has a unique perspective on the industry.

Jackie Backman ·
profile

Segpay Marks 20 Years of High-Risk Triumphs

Payment processors are behind-the-scenes players in the world of ecommerce, yet their role is critical. Ensuring secure, seamless transactions while navigating a rapidly changing regulatory landscape requires both technological expertise and business acumen.

Jackie Backman ·
opinion

The SCREEN Test: How to Prepare for Federal Age Verification

For those who are counting, there are now 20 enacted state laws in the United States requiring age verification for viewing online adult content, plus numerous proposed laws in the works. This ongoing barrage has been exhausting for many in the adult industry — and it may be about to escalate in the form of a potential new AV law, this time at the federal level.

Corey D. Silverstein ·
Show More