educational

Setting New Window Properties

I received several emails last week in response to my Cluster of Consoles tutorial. Most echoed a similar theme, reflecting a desire to know more about how to specify a new window's (console) properties, a process which I will explore in detail below:

Using JavaScript to open a new window allows you to specify the new window's "properties." These properties not only include the size, shape, and position of the window, but whether or not the window displays toolbars, scrollbars, or a status bar; as well as several other features.

Many newbies frustrate themselves trying to alter their current window's properties by calling a "_top", "_parent", or "_self" tag with the "opener" code, but the unfortunate fact remains that a new window is required if you want it to assume specified properties.

If you want, you can learn much more about window properties from this tutorial, but for our purposes, window properties may be easily defined. For an example of relevant syntax, study the following event code:

window.open
('https://www.yoursite.com', '_blank',
'resizable=no,scrollbars=no,
toolbar=no,location=no,
directories=no,status=no,
menubar=no');

While the above statements appear on individual lines for clarity, for the script to be properly executed, these statements must appear as one continuous line of code.

All of the defined parameters are quite self-explanatory: First, window.open is the command to open a new window. The location (URL) of the new document is given, followed by the "name" of the window you wish to load this document into. This will usually be '_blank' to reference a new browser window. (Back Button Redirects are one exception, specifying '_self' in order to load the document into the current window. When doing this, you cannot specify other attributes; as your window retains its original configuration.)

Next follows the actual window properties. Specify either "yes" or "no" to make your selections. Setting everything to "no" makes for a typical "console window," but you may for instance wish to activate the status bar in order to show hyperlink OnMouseOver info.

Two additional parameters are height=XXX and width=XXX, with "XXX" being replaced by the desired value in pixels. These are useful if you know the actual dimensions of your document. This is not always as easy as it seems (unless you are using a set graphic size for a console), and can result in only a partial view of a document in a window without scrollbars!

The easiest way for you to evaluate how changing these basic options will affect the functionality and appearance of your console is through experimentation. Construct a simple web page to launch your consoles, and then see how modifying the various script parameters will change things. Test your code across as many browsers as possible, and find something that works for you. Don't be afraid to experiment with your scripts: you never know what you'll discover!

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

Maintaining Brand Trust in the Face of Negative Press

Over the last year, several of our merchants have found themselves caught up in litigation over compliance with state age verification laws. Recently, Segpay itself was pulled into the spotlight, facing scrutiny over Florida’s AV statute, HB 3. These stories inevitably get picked up by both industry and mainstream news outlets.

Cathy Beardsley ·
opinion

How to Switch Payment Processors Without Disrupting Business

For many merchants, the idea of switching payment processors can feel pretty overwhelming. That’s understandable. After all, downtime can stall sales, recurring subscriptions can suddenly fail, or compliance gaps can put accounts at risk. Operating in a high-risk sector like the adult industry can further amplify the stress of transition.

Jonathan Corona ·
profile

WIA Profile: Katie

Katie is the ultimate girl’s girl. As community manager at Chaturbate, she answers DMs, remembers names, and shows up for creators and fellow businesswomen when it counts. She’s quick to credit the people around her, and careful to make space for others in every room she enters.

Women in Adult ·
opinion

How to Stay Legally Protected When Policies Get Outdated

The adult industry has long operated in a complex legal environment subject to rapid change. Now, a confluence of age verification laws, lawsuits, credit card processing and data privacy rules has created an urgent need for all industry participants — from major platforms to independent creators — to review and potentially overhaul their legal and operational policies.

Corey D. Silverstein ·
opinion

From Compliance Chaos to Crypto Clarity: Making the Case for Digital Payments in Adult

These are uncertain times for adult merchants. With compliance tightening and age verification mandates rising, the barrier to entry keeps getting higher.

Cathy Beardsley ·
opinion

Real-Time Insights to Streamline E-Payments and Stop Lost Sales

A slow checkout process is more than just annoying — it’s expensive. In a high-risk sector like the adult industry, even small delays or declined transactions can cost businesses thousands in lost revenue every month.

Jonathan Corona ·
profile

FSC's Valentine Leads Charge for Sex Worker Rights and Financial Access

Before ever stepping into a courtroom, Valentine already understood the power of presence. After all, they’ve shimmied on stages as a burlesque performer, consulted behind the scenes for creative businesses and moved through the adult industry not just as an advocate, but as a participant.

Jackie Backman ·
opinion

Breaking Down HB 805 and How it Affects the Adult Industry

North Carolina House Bill 805 was enacted July 29, after the state legislature overrode Governor Josh Stein’s veto. The provisions that relate to the adult industry, imposing requirements for age verification, consent and content removal, are scheduled to become effective Dec. 1. Platforms have until then to update their policies and systems to comply with the new regulations.

Corey D. Silverstein ·
opinion

Staying Compliant With Payment Standards Across Europe and Australia

So, you’ve got your eye on international growth. Smart move. No matter where adult-industry merchants operate, however, one requirement remains consistent: regulatory compliance. This isn’t just a legal checkbox — it’s a critical component of keeping payments flowing and business operations intact.

Jonathan Corona ·
opinion

How to Avoid Copyright Pitfalls When Using Music in Adult Content

When creating an adult video, bringing your vision to life often means assembling just the right ingredients — including the right music. However, adding music to adult content can raise complex legal and ethical issues.

Lawrence G. Walters ·
Show More