-
JavaScript Know How
JavaScript can be one of the most useful additions to any web page. It comes packaged as standard in Microsoft’s Internet Explorer and, Netscape Navigator and allows webmasters to perform field validations, mouse-over’s, pop ups and a whole entourage of other nifty little features on our sites.
In this article we will show you how to:
– Display the browser name and version number
– Change the text in the status bar of the browser
– Use an input box to get text from the user
– Use a message box to display text to the user
– Change the title of the browser windowBefore that, however, we need to know how to setup our web page so that it can run the JavaScript. JavaScript code is inserted between opening and closing script tags: <script> and </script>, like this:
<script language=”JavaScript”>
–> JavaScript code goes here <–
</script>
These script tags can be placed anywhere on the page, however, it’s common practice to place them between the <head>and </head> tags. A basic HTML page that contains some JavaScript looks like this:
<html>
<head>
<title> My Test Page </title>
<script language=”JavaScript”>function testfunc()
{
var x = 1;
}</script>
</head>
<body>
<h1>Hello</h1>
</body>
</html>For the examples in this article, you should use the basic document format I have just shown you, inserting the JavaScript code between the <script> and </script>tags. When you load the page in your browser, the JavaScript code will be executed automatically.
Displaying the browsers name and version number.
The “navigator” object in JavaScript contains the details of the user’s browser, including its name and version number. They can be displayed in a browser using the document.write function:document.write(“Your browser is: ” + navigator.appName);
document.write(“<br>Its version is: ” + navigator.appVersion);I run Windows 2000 and Internet Explorer version 6, so the output from the code above looks like this in my browser window:
Your browser is: Microsoft Internet Explorer
Its version is: 4.0 (compatible; MSIE 6.0b; Windows NT 5.0)Changing the text in the status bar of the browser.
To change the text in the status bar of a browser window, just change the “status” member of the “window” object, which represents the entire browser window:window.status = “This is some text”;
Using an input box to get text from the user.
Just like in traditional windows applications, you can use an input box to get some text input from the user. The “prompt” function is all you need:var name = prompt(“What is your name?”);
document.write(“Hello ” + name);The prompt function accepts just one argument (the title of the input box), and returns the value entered into the text box. In the example above, you get the users name and store it in the “name” variable. You then use the “document.write” function to output their name into the browser window.
Using a message box to display text to the user.
You can display a message box containing an OK button. These are great when you want to let the user know what is happening during their time on a particular page. You can use a message box to display the “name” variable from our previous example:var name = prompt(“What is your name?”);
alert(“Your name is: ” + name);The “alert” function takes one argument, which is the text to display inside of the message box.
Changing the title of the browser window.
To change the title of a web browser’s window, simply modify the “document.title” variable, like this:document.title = “My new title”;
One bad thing about the “document.title” variable is that it can only be manipulated in Microsoft Internet Explorer. Netscape’s implementation of JavaScript doesn’t allow for modification.
In Closing.
As you can see from the examples in this article, JavaScript is a powerful scripting language that can be used to enhance a visitor’s experience with our site. However, you shouldn’t use JavaScript too much because in some cases it can annoy visitors and send them packing before your site even loads!Article Written By Lee
-
Gay Online Dating – Offering Your Surfers An Alternative
Whilst adult websites remain the most highly concentrated method of making money for affiliate programs we have slowly started to see a trend over the past few months of affiliate programs adding a new kind of site to their regular lineup, online dating sites however, as webmasters working in the adult industry how can we successfully market these sites on our existing traffic base? This is what we are going to look at in this article.
Gay Online Dating – Some Facts And Figures.
As mentioned above many affiliate programs now offer some form of online dating site whether it is for gay men and women or for their straight counterparts there is very little mentioned about the target audience these types of site attract so, with that said lets look at some figures from a recent Nielsen report in respect of online dating sites.The online dating market is expected to grow to become an estimated $642 Million dollar industry by 2008.
On average, a user on a dating site will spend 1hour 45 minutes on the dating network itself.
The highest ranked age group (27.64%) for online dating sites is between the ages of 35 and 44 years old.
Men are more likely to a) Browse online dating profiles, b) Post a profile on a dating site, c) Respond to a dating profile and, d) Pay for access to a dating site than women.
So what does this mean for us marketing our sites to gay men and women well, straight off the bat you can see that there is going to be a considerable boom in the online dating world and, with that boom will come a rather satisfying chunk of change also, the age group that spends most time on a dating site as mentioned above is also within the demographical group for the ages of gay online surfers. In addition, males as mentioned, are also more likely to respond to, post, browse or, more importantly here, pay for access to an online dating site making this an ideal opportunity for those of us who actively promote a gay site lineup to start supplementing our income by offering our surfers access to dating sites too.
Gay Adult Dating – Affiliate Programs.
So now we have the figures where do we go to find a gay adult dating affiliate program? Well, there are a couple of options for us, there is the highly recognized outpersonals.com as well as the gay.com dating area however, surprisingly enough, the more ‘mainstream’ dating sites such as date.com, match.com and even adultfriendfinder.com all have sections within their sites for gay men and women as well as gay specific tour pages and promotional materials.Gay Online Dating – Where To Market Our Sponsor.
As with any type of new affiliate program the best way to start marketing them is to place a link on a less prominent page of your site so as to not send your high converting traffic off to a sponsor that may not work for you however, if you have a good network of sites then you might like to try adding your newly found dating affiliate program on your sites ‘exit’ links or even create a TGP gallery specifically for your dating sponsor utilizing softcore content. Also, one thing that I have personally found is that using text links always garners more clicks thru to the dating site than a regular button or banner so again, this may be something you would like to try. In essence though, first test your gay dating sponsor on a minimal traffic source to see what effect it has on your overall site then, once you have ran a test period you can adjust your marketing efforts appropriately.Gay Adult Dating – Recap.
As we have seen above the marketplace for online dating is going to grow to a multimillion dollar industry and, whilst we already know that gay surfers are more affluent and willing to spend money if we can match our sponsors to the type of site they are looking for, why not also offer them an alternative to porn? Many webmasters often overlook the basic principles of marketing that is to say, don’t just give a potential buyer one option but rather, give them several options, by utilizing dating affiliate programs on our sites we are not only giving the surfer an option but, are also giving us a potential opportunity to make more money.Article written by Le
-
Mirroring Adult Sites – Stage Three
So we hit stage three of our tutorial in this stage we are going to make some pages for our top 5 AVS systems. However, as we did in the last tutorial with the new TGP galleries we created we are going to use the same content and same pages that we have already built. On with the tutorial…
Anyone who build AVS sites will know that you need to have a standard site layout. This usually consists of an entry page (or a warning page), a navigational page (or in our case our menu.html page) and some gallery pages.
So the first thing we need to do is open up the warning page. Once this page has been opened we now need to do some editing of the page, what I would suggest is moving the warning text to the lower half of the page and at the top making some ‘juicy’ sales text, depending on the niche you are targeting with this site you may also like to add a couple of the original thumbnail images at the VERY top of your page however, these should NOT be linked to the full size image.
Once you have edited your page to a reasonable standard for the AVS you now need to save this page in the /FreeSite/AVS/ folder that you originally created on your HD. I would suggest saving the page as something like avs1.html or the name of the AVS you will be using this page for.
Once you have done this you now need to duplicate this page but save it as a different name in again, in the /FreeSite/AVS/ folder so you will end up with avs1.html, avs2.html, etc.
At the moment these AVS pages have no AVS script on them so, we need to visit the AVS system we are going to be using and fill out the details to have the AVS generate an AVS signup page script for us. Once we have the coding that the AVS provides we now have to place this on our avs1.html page. You should repeat this for each of the AVS’s you wish to use and save each instance of the generated AVS script to a separate AVS*.html page.
be aware, that when you are putting your information into the AVS to generate the script, you should enter the ‘members area url’ as the page we created for our navigation so, the AVS script location will be /FreeSite/AVS/avs1.html and, the members area page will be, /FreeSite/Menu/menu.html.
Once you have placed the script on our avs.html pages you should now have the following sites ready:
1) 50 Pic Free Site With Pics On HTML Pages.
2) 5 TGP Galleries With Pics On HTML Pages.
3) 5 AVS Entry Pages.Now we are starting to see how using one set of content can amount to a mass of sites all of which can be sending traffic to our sponsors and, to our surfer trap.
This is where stage three of our tutorial ends however, in our next tutorial we will continue to make some more sites and in an effort to get some traffic we start to play with the ones we have currently created.
Article written by Lee
-
Building Your Brand – Business Basics
Many online businesses have a good solid brand name attached to them already for example, ARS (http://www.adultrevenueservice.com), Webair (http://www.webair.com) and, WEG (http://www.wegcash.com). These companies have worked long and hard to build up their own brand name on the internet and, specifically, in the adult industry where, it almost seems that everyone is out to make a name for themselves so, how do you as a small business owner get a piece of this branding pie?
Branding Basics.
The word ‘Brand’ or ‘Branding’ can refer to several items when used as a noun to describe a company name, product, service or, trademark. Branding started centuries ago when cattle ranch owners used to place their unique insignia on their cattle so that surrounding ranch owners knew who the cattle belonged to and, so that the owners of the brand knew if their cattle were being stolen by others.Starting The Branding Process.
From the very first site you build you should start working on your own inimitable brand name or logo, perhaps it will consist of a small logo on top of every page you build or even a simple text link for your sites domains, either way, the one thing that is important in recognizing a brand is being able to place it to a product instantly.Building Your Brand Name.
Now that you have started the branding process how can you continue to grow your businesses brand name or product even further? This is what we will take a look at next.Domain Name Registration.
Buy the domain name that is representative of your ‘brand name’ if your brand is going to be 123pornosex then go and register 123pornosex.com be cautious though, just because you think of a brand name, you should ensure the domain is available to register BEFORE you start using that brand in detail.Getting The Word Out.
This may seem like the hardest of tasks at first but, once you make a start in branding your site or, yourself this is relatively easy to keep up on an ongoing basis.Visit the boards, use your tagline as often as possible and, either mention your brand name in the tagline or, link to your brand names website. This is especially easy to do if you run a TGP or some other site that needs to attract webmaster traffic in order for it to succeed.
Start your own newsletter, this may seem an odd way to build your brand up but, if you name your newsletter the same as your brand name for example you might have a text link saying:
Join the BRANDNAME Newsletter.
This keeps the branding process alive and well. The next step you should take it to ensure that the sender address of the email is something like brandname@brandname.com again, even though you have collected the email addresses by sending out mailings from an address like the one above you have more of a chance of your brand name actually staying in the mind of the newsletter recipient.
In addition to a newsletter, you might also like to consider having a designer make you a logo or button you can use on your site/s this will come in handy for several uses for example, if you own a traffic site you can use this logo as a reciprocal link, you can use it in your signature on message forums and, you can even include it on sites you build.
You might also like to consider writing articles for other sites to use, usually the sites that publish your articles will place a link or a small bio to you or your site, this is another way to increase the ‘exposure’ of your brand.
Branding Overview.
All in all, building a brand name for yourself or your business need not be a hard and tedious task in fact, if you start off almost immediately building up name recognition for you and your sites. Regardless of what type of product, service or site you operate getting your brand name recognized by both webmasters and surfers can lead to a lot of money long term, start now and reap the benefits later in your career.Article written by Lee.
-
What Happens Your Current Processor Bails?
Whilst this is perhaps one of the hardest challenges that a webmaster of a paysite can face in the industry it isn’t as bad as they may seem at first after all, there are literally hundreds of processors to choose from ranging from credit card processors, dialer option, micro-sms billing and a wide range of other systems.
The first and foremost thing you should do however when confronted with this challenge is to try and contact your existing processor and find out what will happen to funds that you are owed, will you be paid (in most cases you will).
The next thing you should do is to evaluate your business billing methods are you offering multiple processors already? If so, simply switch to your backup processor and find a new processor to use as a backup.
However, what happens if you only have a single processor on your site what can you do then?
First things first, you need to make sure you choose a reliable payment processor to start off with companies such as iBill, CCBill, CCBill EU, Netbilling and Jettis are all good processors used by a multitude of sponsors and content providers amongst the other companies.
You will most likely find that these companies are more than happy to work with you in the integration of their system onto your site.
Whilst you are awaiting your setup of your new processor to ensure you do not lose any sales it may be an idea to divert your join page off to a dialer or, perhaps have some form of ‘internal’ billing mechanism set up so that, when you do change over processors you can seamlessly transition your member base across.
Now, presuming that you already have an existing member base what do you do then? How easy or hard is it going to be to transfer them across to your new processor? Well based on the situation some were confronted with when Visa introduced the new fees to process adult payments this can vary from webmaster to webmaster again, as before, the easiest solution for you would be to contact the company you will be using as your primary processor and see what they can suggest.
Hopefully, you will have access to a database of your existing members email addresses this will also come in handy to ensure you can keep recurring those members. Send out an email stating that you will be changing your processor and, ask that, if they would like to remain a member of your site that they update their billing information, it might also be prudent to offer them some sort of recompense for having them change processors perhaps something along the lines of 2 weeks low cost or even free access tot he site, this is sure to mean that most of, if not all of your existing members will input their billing information again enabling you to rebill them until they cancel their membership at our new processor.
Of course nothing is infallible so the best advice i can offer you is to work closely with your new found processor and make sure that the transition period happens as quickly and, as smoothly as possible.
Hopefully this article will be of some use to those who do get affected by their processors going out of business and, will also serve as a warning to have multiple processors in place for those who have not or will not have the need to change your billing company.
Article written by Lee
-
Marketing to European Surfers
Marketing to European Surfers.
Today we’ll try to answer couple of questions regarding dialers and how to market them to European traffic.
How to get traffic to your European market targeted site?
Pretty much the same way as for all the other sites, lets German market for example (Germany, Austria, Switzerland) use SE’s, German link-lists, TGPs,… feed site with your own traffic, and don’t forget to use exit-consoles.
Is your site translated into specific language?
Yes, of course you won’t get far using English template on German/Spanish.. sites… You can always contact Adult Site Translation if you need help with translations.
What sponsor should you use?
That is pretty hard to say. Practically since almost every European based sponsor offers dialers so it doesn’t really matter which one you choose. It’s the same with per sign-up sponsors: It depends how good you are in sending traffic to them. And as always try couple of them and see which one works best for you. Most of the sponsors will offer to your surfers to pay by CC, bank account and dialers.
Me personally, I don’t really advertise dialers. I go for sign-ups because most if not all European sponsors are recurring and it brings more money in the long run. But if a surfer wants to pay the (admittedly) high phone bills – that’s fine with me In fact, sometimes I get more money from a 0190-number (dialer number in Germany starts with 0190) than I’d get if the surfer would sign-up with his CC and would cancel his membership after the first payment.
Why are dialers so successful in the German/European market?
Well, I can think of 3 reasons for this:1.) 0190-numbers are very common in Germany. Many support-hotlines use them, you can download logos for your cell phone via 0190, you can get health-tips via 0190, fax-numbers, etc… Germans see those numbers everywhere and get used to them. Of course they know that they are expensive but I think they tend to forget this because they are so common.2.) Much of my income from dialers is from Swiss and Austrian people. Especially surfers from Switzerland LOVE dialers (Some of them spend hours/nights with dialers and in the end if i get 50% of that for me is not bad, isn’t it?
I think they love dialers because they hesitate to give out the information on their CC (if they have any) and they can’t/don’t like to transfer their money via bank transfers. So dialers are actually their only way to get into the members-area.3.) Credit cards are not very common in Germany. I would guess only some 30% have one and many who have one don’t believe that CC transactions on the internet are secure. So most of the surfers have only 2 options left: Paying by bank account or using a dialer. The bank account has 2 disadvantages in the eyes of the surfers: 1st “The sponsor knows my name, my account number, where I live and that I’m a greasy little wanker who pays for porn. -Maybe this sponsor is going to tell my neighbors about it-” 2nd “How can I explain this to my wife?” On the other hand the dialer has advantages: 1st It is anonymous. Nobody knows who and where the surfer is. 2nd The dialer is faster than typing all the necessary information needed for a bank transaction. A few seconds for a 35kb download and the surfer is ready to go. 3rd You can always find a reason why there’s this 0190-number on the phone-bill. “Well darling, you know, I had problems with my new graphic card and I had to contact the customer-support. Those damn bastards are on a 0190-number what what can I do?”
Well, that’s about it on dialers. One warning at the end: If you like to give them a try beware of those that do auto-downloads and auto-installations. Surfers don’t like them. Use dialers where the surfers needs to click somewhere to download and install them.Article written by Lee
-
Calling Complete JavaScript’s With One Line Of HTML Code
We all know that some JavaScript coding can be excessive and add considerable amounts of additional coding to our pages making them both slower and less search engine friendly however, what if I told you there was a way you could call the EXACT same JavaScript functions you are calling now by using a single line of code and, in the process you would NEVER have to find a specific piece of JavaScript again as you would instantly know where it was saved.
You would probably think the above is in fact very time consuming but, it actually takes no time at all.
The secret is to copy and paste the JavaScript into a plain text file and save that on your server somewhere. However, instead of saving it as a .txt extension save this file as a .js extension and, to make it easier still to find, when you upload this file to your server place it in a directory called /JavaScript/.
That’s pretty much it, easy huh?
Now comes the part of actually getting the JavaScript to work on your web pages, what you need to do instead of using the complete JavaScript coding that you usually would if you wanted to make a pop-up console appear is to use the following coding placed between your <head> and </head> tags:
<script language=”JavaScript” src=”../JavaScript/popup.js”></script>
That will now call the popup.js file or whatever it was you called it from your server and make the JavaScript function work for your surfers with JavaScript enabled in their browser.As you can see, not only does using this method save you a considerable amount of time but, it will also make your pages more search engine friendly as spiders will not have to work their way through a lot of heavily JavaScript before they get to your SE content.
-
Using Mainstream Sponsors On Adult Sites
With the adult industry moving more and more into the mainstream web every week that passes as late i thought it would be an idea to show you guys how it is possible to use mainstream sponsor programs on your adult sites to build up a steady commission check even when a surfer going to your adult site doesnt actually buy anything from your adult sponsor.
Mainstream Sponsor Programs – The Choices.
The first thing that you need to do is to choose a mainstream sponsor that offers you a good choice of products / services to market to your surfers mainstream affiliate programs such as Click Bank, Commission Junction and, Amazon.com are all good places to find a selection of mainstream products and services you can offer your surfers in addition to the adult sponsors you currently use.Mainstream Affiliate Programs – Setting Up.
The first thing that you need to do however in order to offer the mainstream affiliate program products to your surfers is to register a generic, non-adult domain name and, instantly get this domain setup on your current web server.This will be the domain name you use for all correspondence between the mainstream affiliate networks and yourself in addition, this will also be the ONLY domain that you utilize the mainstream linking codes on.
Using Mainstream Sponsors – Getting Started.
The first thing that you need to do now you have your domain and mainstream affiliate networks sorted out is to build a couple of specific ‘doorway pages’ on your new generic domain name. This could include something like an article or product review or perhaps something as simple as an image of the product and a short description which you can use to lead the surfer into the mainstream affiliate programs site, either way, the idea is to have the root of the domain 100% free of adult content and utilize specific doorway pages which you can link to from your adult sites.Generating Mainstream Traffic.
Onto the really easy part, your current free sites all have an enter and exit link correct? If so then you are already half way finished, all you now need to do is to ensure that EVERY SINGLE exit link goes to your mainstream doorway page for a specific product or group of products. Make sure that you do not link to the root of your generic domain at any time but only to specific doorways and, that each of these doorways has a link to the root domain.By linking to your generic site in this way, you are enabling the surfer to choose whether they first of all, want to look at your adult site or, they want to leave the site and go to your mainstream affiliate network sponsor in the process giving you the potential of making a sale at the mainstream affiliate program.
Mainstream Sponsor Programs – An Overview.
By utilizing mainstream affiliate programs in this way you are not only potentially increasing your bottom lines but, you are also utilizing every single click that you get both to and from your site, to often webmasters send their exit links to places like disney.com or google.com and in doing so, they lose out on potential incomes, hopefully when you start marketing your exit links in the manner explained above you will begin to see the benefit of how both adult and, mainstream sponsors can be used in conjunction with each other in order to increase your bottom line profits.Article written by Lee
-
Barter For Business – Cost Free Trading
Whether you are a designer, traffic broker, content provider or, web host the one thing that will connect your business in some form is that other webmasters at some point, will want the services and products that you offer. With this in mind, you are instantly at an advantage the reason for this advantage will become apparent in this brief article.
Bartering Goods And Services.
Bartering is a business practice that is as old as mankind itself, from the stone age right up to the present day individuals have been trading their goods and services for other goods and services of like value. This is where your advantage comes into play. Perhaps you are a web hosting company in need of design work or, perhaps you are a designer in need of traffic, either way, there will always be other webmaster who want the services you offer and, in return they will offer services that you require. This is the absolute fundamental basis of the barter system, trade one product or service for another in order to improve the way in which you do things.Finding A Company To Barter With.
The problem that so often arises when bartering is involved however is finding a vehicle for you to start the bartering process. More often than not you can find someone on a message forum that will be willing to barter your services however, this is not always the case and so, you should turn to email to instigate the initial contact.Asking For A Barter – How To.
First and foremost, before sending an email or making a post asking to barter your services or products you should compile a list of items that you need, this could be content, advertising, graphics work or even web hosting, either way, by having a clear concise list of what you are in need of and, more importantly, what you can offer in return prior to sending an email will help you out immensely.Now that you have your list of services you require and what you can offer in return it comes to the initial contact, the first thing you should do is explain what it is you are proposing as clearly as possible, explain why a barter with you will become a win/win situation for the both of you as well as making sure you drop a compliment or two about their company in the email. Also, you should prove why offering your services in exchange for theirs will be a fair trade, by doing all of this at the first point of contact you stand a much better chance of them accepting your trade proposal.
Bartering – Recap.
Bartering is a strong tool that can help you build your business from the very second you start it however, with this strong tool also comes the opportunity for it to become a strong negative when running your business. To much time concentrating on bartering services can take away from running your business to its fullest, rather than trying to barter services all the time, ensure you build a good capital up so you are able to invest in services to build your business. Either way, whether you choose to barter or not, this method has been proven in success for thousands of years, why not try it out for yourself?Article written by Lee.
-
Networking – Not Just For Computers
Networking – Not Just For Computers.
“Networking” is a buzz word today. Everybody talks about it. Everybody hears about it. Everybody wants to do it more effectively. But why? Why do people network, and what do they hope to accomplish?Primarily, networking is the process of meeting new people, either through a contact that you initiate, or through an introduction by a third party.
Networking allows you to meet, and establish a relationship with, people who may not have heard of you and your business through any other method.
For most professionals, networking is done to increase revenues. Sometimes new clients are found, sometimes suppliers and, sometimes new ways of doing things that increase your bottom line are found through networking.
When networking you should work towards these common goals:
To exchange business ideas.
To get better service.
To develop your business skills.
To potentially increase your revenues.
To establish long term friendships.This means that networking is an essential part of building up strong business relationships. We need each other to buy from us, sell to us and, brainstorm with us in order to progress in our fields. In order for us to do these things we must give something back in return, its all about give and take.
we must be willing to hone our relationship building skills. We must be great listeners. We must be willing to give before we receive. We must get into networking mode in our own minds before we ask the same of others. This must be constant.
Through consistent contact with others, you will, instinctively start to put 2 and 2 together. When you begin speaking with someone your mind will automatically start searching the inner most recesses of your brain to remember people, places, even products, that will assist the person you are networking for and, at the same time, you will also be thinking of what they can do for you in return.
This Is Networking.
This is the state of mind you should be in whenever you are talking to someone in your industry, to get your mind in this state takes a while but, once you have focus and determination, you will immediately see how you can help others and, how they can benefit you in return whilst listening to them. this is the first step in getting them to help you.Networking, as its name would suggest is WORK, hard work, the process is also a learned skill, its not something that we are all born with or, can all do. It can often be frustrating when you have a goal in mind but, your networking functions are not achieving that goal. All in all, networking is the building block of many a business venture, it can make and it can break you. Take some time to consider this fact the next time you are posting on a board or go to one of the tradeshows, you might just come away with more than you hoped for.
Article Written By Lee
Premium Sponsors
Categories
- 2257
- Billing Solutions
- Blogging
- Branding
- Content
- Domain Names
- Employment
- Forms & Contracts
- General
- Hosting
- Link Lists
- Opt-in Mail
- Paid Traffic
- Pic Posts
- Promotion
- Scripts
- Search Engine Optimization
- Sponsors
- TGP
- Traffic
- Tutorials
- Viral Marketing
- WebDesign
- Writing