• Marketing to Foreign Surfers

    Date: 2011.02.22 | Category: Promotion | Response: 0

    Marketing to Foreign Surfers.

    What would you do if I told you that there are 3 million plus new surfers last year that you did not market too? You probably marketed your product or adult site to those that could read English well enough to be searching with English terms. How about the growing numbers of surfers with English as their second language?

    According to Nielsen/Net Ratings, from September 2000 to 2001, Italy’s online population grew by 3,540,970 users: about one new user every ten seconds. Italy is just one of the non-English speaking countries that is coming online at lightening fast speed.

    Are you relying on these surfers searching for your English keywords? Are you thinking that every language uses the words “porn and hardcore” and what about the finer niches like “bisexual and titties”? The best conversion is with newbie surfers just online for the first time and wanting to see adult sites and products. Those that have been around a while find out about the plethora of free porn. This means that websites do their best marketing with search engine placements of their main sites or feeder sites. If you are on your money, you are trying to work every engine for every related keyword. Now think of the keywords that you could be going for in all the worlds’ languages!

    Do a bit of research in some of the common languages. If I was Italian and new to the net, the first place I would be searching is in an Italian search engine. Go to http://arianna.iol.it/ and search using the word porn and you will find 10 listings come up all in Italian. Not one is English. Even http://it.yahoo.com/ Yahoo Italia does NOT serve up your English porn site in its results.

    So how do you get a piece of this pizza pie? You need at least a doorway written in Italian. You need to visit a site like http://www.adult-site-translation.com/ and find out how affordable it is for a doorway page that is put together by a foreign translator. Not only is the text for your doorway sites or even complete tours with the proper keywords but the graphics are redone where necessary. You really cannot rely on a text translator. We all have been on a site where it was obvious that the webmasters first language was NOT English and felt bad for their awkward use of words. This is not how to make a sale.

    You need to be careful that you choose a professional service for your translating needs. You need to know that the translators are top notch and can not only translate your existing page/site keeping your marketing angles but they can also advise you on such things as proper wording and what a surfer from that culture would find erotic. Languages do not translate word for word. A service like Adult Site Translation has hired translators who also know how to market adult sites. They will tell you the search terms your page should be listed under and can assist you with foreign search engine optimization.

    Remember the days where you were the only site in a category or niche? It was like being a pioneer and it was very lucrative. Do you want to be first to market to these growing pockets of millions of new surfers? There are new frontiers out there and finally sites like Adult Site Translation can assist you to conquer them successfully!

    Article written by Susanna

  • Gay Adult Marketing 101

    Date: 2011.02.22 | Category: Promotion | Response: 0

    There is a myth out there that gay traffic is hard to convert because a gay surfer is reluctant to buy. This isn’t so. Conversions come down to two things:

    • The gay surfer is discriminating; a membership to a site that has exactly what we want
    • The gay surfer is loyal; I, believe, this comes from our experience as a community. When a Gay surfer decides to purchase a membership, it’s typically for a longer period of time.

    This is evident with the better Gay Pay Sites; conversions may be lower than a straight hardcore site however, membership tend to be longer than the industry average. The gay surfer is discriminating; we look for a long-term membership with a site that has we want whether it’s teens, bears, amateurs, etc.

    With that idea, I always advocate that age-old niche free site philosophy use a variety of sponsor programs on your sites. Typically, my free sites will have one main sponsor (I use Quality Males) then I’ll break my other banner slots down one Teen site, a Twink site and maybe a product like Viagra. But this will vary depending on the “flavor” or “personality” of your site – if you have a gay leather site, my main sponsor will be a Leather sponsor or product, with a variety of other sponsors (one mega site, a teen site, and maybe an adult toy store).

    One marketing option, I tend to see working well is the full-page ad vs. only banners. I, honestly, do not know whether it’s a quality issue, a larger ad or the surfer’s disgust with banner ads, but it works well in our market.

    One thing that experience has proven to me, it makes no difference whether you’re a webmaster to gay or straight traffic, you need to analyze your traffic. If you’re sending traffic out to sponsors and your not seeing the conversions, maybe you need to really look who your surfers are. If you’re lucky enough to know who your surfers are, then look for a specialty sponsor (whether partnership or click-thru program). It’s all a matter of finding the right sponsor programs and tweaking your site (and we all know how that can be). Don’t be afraid to experiment. It’s the long term that we need to be looking at. Remember that this isn’t “Who wants to be a Millionaire is 30 days or less”.

    Gay traffic isn’t difficult to manage as many people think. It’s a matter of patience and understanding your market. And the best way to understand that market, is to ask a successful webmaster in the gay adult market..

    Article written by Gary-Alan

  • What On Earth Is CGI?

    Date: 2011.02.24 | Category: WebDesign | Response: 0

    Let’s unlock a little bit of the mystery about something called CGI. If it helps any, CGI means Common Gateway Interface.

    This is a method which is used to swap data between the server (the hardware and software that actually allows you to get to your web site) and a web client (your browser). CGI is actually a set of standards where a program or script (a series of commands) can send data back to the web server where it can be processed.

    Typically, you use standard HTML tags to get data from a person, then pass that data to a CGI routine. The CGI routine then performs some action with the data.

    Some of the more common uses of CGI include:

    Guest books – The CGI routine is responsible for accepting the data, ensuring it is valid, sending an email acknowledgement back to the writer, perhaps sending an email to the webmaster, and creating the guest book entry itself.

    Email Forms – A simple CGI forms routine just formats the data into an email and sends it back to the webmaster. More complicated routines can maintain a database, send an acknowledgement and validate data.

    Mailing List Maintenance – These routines allow visitors to subscribe and unsubscribe from a mailing list. In this case, the CGI routine maintains a database of email addresses, and the better ones send acknowledgements back to the visitor and webmaster.

    A CGI routine can be anything which understands the CGI standard. A popular CGI language is called PERL, which is simple to understand and use (well, compared to other languages). PERL is a scripting language, which means each time a PERL routine is executed the web server must examine the PERL commands to determine what to do. In contrast, a compiled language such as C++ or Visual Basic can be directly executed, which is faster and more efficient.

    Okay, in a nutshell (and greatly simplified), here’s how it works:

    1) You (the webmaster) specify a form tag which includes the name of the CGI routine.

    2) You create HTML tags which retrieves data from your visitors.

    3) Each of the input tags includes a variable name. The data which is retrieved from the visitor (or directly set if the tag includes the “hidden” qualifier) is placed in the variable name.

    4) When the visitor presses the “submit” button, the CGI routine which was specified in the form tag is executed. At this time, the CGI routine “takes control”, meaning the browser essentially is waiting for it to complete.

    5) This CGI routine can get data from variable names. It retrieves the data and does whatever action is required.

    6) When the CGI routine finishes, it returns control back to the browser.

    Some important things to remember about CGI routines:

    You can install CGI routines on your own site if your host allows it http://www.webair.com is an example of a web host which allows for CGI routines. Some web hosts do not allow you to install your own routines but do provide some pre-written ones to you. If these are not sufficient for your needs, you can find a remote hosting service to provide the necessary functions.

    Generally, if you install your own routines they must be installed in the cgi-bin directory of your site. This is a special location which allows scripts and programs to be executed.

    CGI routines work best on Apache-style servers. Windows NT and Windows 2000 does support CGI, but it tends to be slow and problematic.

    If you use a remote hosting service, you must remember that although they appear to be giving you this for free, you are actually paying a price. Usually they want to display advertisements, although some of them actually take visitors away from your site.

    When you write a CGI routine, you have the choice of a scripting language like PERL or a compiled language such as C++ or Visual Basic. Anything which can execute on the web server is acceptable.

    I hope this short introduction to CGI has cleared up some of the mystery.

    Article written by Lee

  • How To Claim Back European V.A.T

    Date: 2011.02.22 | Category: Billing Solutions, General | Response: 0

    With the recent legislations requiring US businesses to charge Value Added Tax to EU Member state customers for purchases of digital product / image downloads there are many new questions going around enquiring how companies and small business owners can claim the VAT back this is what we will look at in this brief article – The basics of claiming back your VAT from Europe.

    What Is V.A.T?

    Value Added Tax (VAT) is a consumption tax levied on goods and services in many countries across the globe. Over the last decade, legislation in the tax systems of Europe, Canada, Japan and South Korea allow for a refund for the majority of non resident entities, worldwide to a refund of VAT in most instances however, especially in the business world, registration must be achieved prior to claiming back your VAT and, preferably before the purchase of Vat able goods takes place.

    Who Is Entitled To A VAT Refund?

    Most businesses will be entitled to receive a VAT refund however, as the laws vary from country to country, the best way for you as a business owner to find out the laws as they affect you is to contact your company accountant who, should be knowledgable enough to inform you of what you need to claim back from each of the EU member states where V.A.T has been charged.

    What Products Can I Claim V.A.T Refunds For?

    Most typically value added tax recoverable expenses can take form as one or more of the following items:

    Business Property Expenses.
    Transportation Costs.
    Inter-company Billing.
    Marketing + Promotional Services.
    Exhibitions, Conferences + Business Meetings.
    Importation V.A.T.
    Digital Downloads (Business Related).

    How Do I Register For V.A.T?

    When a company inside the domestic US conducts transactions in the EU countries where value added tax registrations may be required the registration for the VAT refund should be done prior to the transaction taking place however, on occasions which vary from individual EU member states this registration process may be done retroactively. By becoming registered to claim your VAT back the company is legally required to d the following:

    1) Register for the VAT in the EU country where the transaction takes place.
    2) Account for VAT on all invoices or receipts issued to your European customers.
    3) Deduct the V.A.T incurred from your European suppliers of goods or services.

    Value Added Tax – An Overview.

    When all is said and done, other than the obvious need to increase your pricing structure for certain global markets registering for and, charging value added tax actually has a great deal of benefits. You now get to claim addition refunds from any expenses that you incur from the day to day running of your business, your promotional activities become vat’able so you can now increase the level of global marketing you do and, claim full value back from the EU member states (where applicable). basically, registering in the EU member state will enable your business to grow on a global scale and, at the same time, afford you the luxury of being able to market your goods and services to a greater client base at virtually no cost to yourself this is a good thing especially when you take a look at the growth that international internet usage is making each month.

    Article written by Lee

  • Adult Webmaster Health

    Date: 2011.02.21 | Category: General | Response: 0

    Sounds to me like you are a webmaster. Most of us realize that working at a computer everyday can and often is, bad for our health in one way, shape or, form. However, how do we alleviate these potential problems with our health?

    Well in this article I will detail some of the things that can often affect the webmasters in our industry and how they can be solved.

    RSI (Repetitive Stress Injuries) are the results of, as you may have figured out already, the effects of constantly doing the same movements over and over again using specific parts of your body. One of the most common of these that webmasters are aware of is CTS (Carpal Tunnel Syndrome) which is a result of typing a lot.

    So, how do you combat the effects of CTS? First and foremost, if you experience any form of pain at all, your first port of call should be the doctor, the pain you are feeling could be an indicator of a bigger problem. If you think your pain might be caused by use of the computer then an occupational therapist might also be a good person to visit.

    CTS is often attributed to use of your digits and poor hand positioning when you type one way to solve this problem is to go to Office Depot and purchase a wrist rest, this will ensure your wrist has ample support whilst you are working throughout the day.

    You might also like to try re-positioning your monitor, as a general rule of thumb, having your monitor placed about 20 inches away from your face will usually result in good posture and that in itself can often be a solution to the potential medical problems. One other thing on your posture, get a good chair, one with a high back may be good, these generally offer you more support and, can stop that awkward habit of leaning into your keyboard when you type.

    Eyestrain, Eyestrain is another common problem that the webmaster faces, often it leads to things such as excessive headaches, fatigue and, blurry vision, the most acceptable relief from eyestrain is the use of screen filter that will reduce the glare your monitor emits.

    There of course, some other things you can do to alleviate this problem such as, Adjusting your monitor so the top of the screen is no higher than eye level, as already mentioned, keeping the monitor a safe working distance from you, usually between 18 and 30 inches is recommended by doctors.

    We know computers are machines and tend to forget that our own bodies are complex machines which, should be looked after just as our computers should be, we often forget that sitting at the PC building what was meant to be a 10 minute site can turn into an hours worth of ‘online work’. Take some time every now and again to stand up and walk for 5 minutes, even if it is just to the local store to buy some more smokes, you are actually getting some exercise and, even though the tar in your smokes will end up killing you anyway, you’ll at least be able to work a little longer without getting any problematic computer related medical symptoms.

    This article is not meant as an alternative to visiting your physician and, should you think that any of the above are relevant to you then it is recommended that you visit your doctors without delay and follow any advice that they give you.

    Article written by Lee.

  • Marketing Campaigns – Testing Your Variables

    Date: 2011.02.24 | Category: Promotion | Response: 0

    Irrespective of the medium, an online advertising campaign needs to be tested and optimized constantly in order to provide you with the optimum results. This is where advertising testing can play an important role in your marketing strategy. Despite the advantages to testing your online marketing campaigns, relatively few companies actually go out of their way to see what what works, what doesn’t and, more importantly, why.

    Steps To Testing Your Ad Campaign.

    1) Set expectations as to how you envisage your campaign to perform. This in itself will guide you’re optimization methods. An example of this is, if you expect your ad medium to get a 15% click thru rate or a, 10% conversion rate, you have justification in making adjustments to your campaign if the creative you are using does not perform to your level of expectation.

    2) Don’t get tied into a campaign, If you are going to be purchasing an advertising campaign on a resource site, ensure you have an ‘out clause’. This out clause will enable you to terminate the campaign as long as it has run for a set amount of time, usually, many resources will be happy to give you an out clause especially, if after testing your marketing materials, the results you were hoping for have still not shown themselves.

    3) Consider the variables in your ad campaign, usually, webmasters only think of the one variable in their advertising campaign – Price. However, there are many more variables to be looked at for example, if you are doing a mail drop, the subject line of the email, format and, copy text of the email body itself, all of these things can have a drastic effect on any given advertising campaign, at any given time and often, these can, and most probably will, fluctuate from site to site where you are purchasing ad space.

    4) Stats tracking, tracking your campaign makes it easier to test and review how your advertising medium is working for you, many sites offer live stats for your ad campaigns however, some still do not, where this isn’t a problem in itself as, most companies you choose to advertise with will be more than happy to provide you with statistics as and when you need them after all, you are paying for their services and support.

    5) Pull the plug on campaigns that are not performing, however, ensure you have changed your creative several times before doing so, often, you will find a simple change such as a new creative can drastically increase your marketing efforts. Also, do not just pull advertising as you feel like it, if your campaign has only been active for a week, don’t expect hundred / thousands of hits instantly, often it takes webmasters a while to realize there are new ad mediums running on the sites they visit so often.

    Online Advertising – Review.

    By constantly assessing and testing your advertising campaigns you can pull some interesting figures which can help you long term however, don’t rush into pulling campaigns that you have only just started. Give it a few days, change your copy text and creatives and, if that doesn’t work talk to the company, they will be able to offer you advice and help on improving your sales from your advertising medium after all, they want to keep your business.

    Article written by Lee

  • Geo Targeting – What Exactly Is It?

    Date: 2011.02.22 | Category: General, Promotion | Response: 0

    As the adult industry reaches further and further across the online global community we are beginning to realize the importance of our foreign surfers, gone are the days of shifting them off to a dialer site instead, we find more and more companies actually using geo-targeting techniques to filter and monetize this profitable traffic more but, how does geotargeting work and, more importantly, is it any good? They are the questions we will look at in this article.

    GEO::IP – The Basics.

    The Geo::ip module is a relatively simplistic database of IP addresses and, the matching country to which the IP address belongs. This means that the GEO::IP module can be used for a variety of purposes including automatically selecting the language and countries of your visitors, for credit card fraud detection, and for software export controls.

    Geo Targeting – The Basics.

    As described above, the GEO::IP module is what drives any and all forms of geographical location targeting system (geo targeting). Geo targeting is the method most commonly used in the adult industry to either send a surfer to a localized version of a paysite or, send them off to a dialer in an attempt to monetize them it works by checking either the surfers browser language, country ip address or, both of these.

    Putting Geo Targeting To Work.

    Despite what most webmasters may think about the complexities of geo targeting and the GEO::IP Module for Perl they are easy to use and implement and, furthermore, there are cost free and highly effective ways of using geo targeting on your sites to monetize your international traffic. Lets look at two easy free solutions for webmasters to geo target their traffic.

    JavaScript.

    Using JavaScript you could add the following code between your HTML <head> and </head> tags to redirect international traffic to a specific url on your server:

    <SCRIPT LANGUAGE=”JavaScript1.2″>
    <!– Begin
    if (navigator.appName == ‘Netscape’)
    var language = navigator.language;
    else
    var language = navigator.browserLanguage;

    if (language.indexOf(‘en’) > -1) document.location.href = ‘english.shtml';
    else if (language.indexOf(‘nl’) > -1) document.location.href = ‘dutch.shtml';
    else if (language.indexOf(‘fr’) > -1) document.location.href = ‘french.shtml';
    else if (language.indexOf(‘de’) > -1) document.location.href = ‘german.shtml';
    else if (language.indexOf(‘ja’) > -1) document.location.href = ‘japanese.shtml';
    else if (language.indexOf(‘it’) > -1) document.location.href = ‘italian.shtml';
    else if (language.indexOf(‘pt’) > -1) document.location.href = ‘portuguese.shtml';
    else if (language.indexOf(‘es’) > -1) document.location.href = ‘Spanish.shtml';
    else if (language.indexOf(‘sv’) > -1) document.location.href = ‘swedish.shtml';
    else if (language.indexOf(‘zh’) > -1) document.location.href = ‘chinese.shtml';
    else
    document.location.href = ‘english.shtml';
    // End –>
    </script>

    Php.

    Using .php you can add the following to your sites pages to redirect traffic based on their browser language.

    <?
    $user_lan = $HTTP_ACCEPT_LANGUAGE;

    if($user_lan==’de’) {
    ## German
    $redir_url = “http://www.germanlanguagepageurl.com”;

    } elseif($user_lan==’fr’) {
    ## French
    $redir_url = “http://www.frenchlanguagepageurl.com”;

    } elseif($user_lan==’it’) {
    ## Italian
    $redir_url = “http://www.italianlanguagepageurl.com”;

    } elseif($user_lan==’es’) {
    ## Spain
    $redir_url = “http://www.spanishlanguagepageurl.com”;

    ## US traffic or Rest of world not defined above
    } else {
    $redir_url = “http://www.yourmainpageurl.com”;

    }

    header(“Location: $redir_url”);
    exit;

    ?>

    As you can see from the above two examples, monetizing your international foreign traffic is a relatively easy step and, with the right sponsors to send this traffic to you will be able to reap the profits of countries that other webmasters are not targeting yet.

    Geo Targeting – Overview.

    When all is said and done geo targeting can be a cost effective way to increase your bottom line profits, whether using a free method as described above or, using one of the many filtering services available on the net you should start to monetize your global surfers. One thing you should also consider however is that far from sending your international traffic to a dialer you should search around and find a good mix of adult affiliate programs with a variety of localized paysites, this in itself will enable you to see just how much traffic you have been wasting by using dialers in the past and, it will also allow you to realize the full potential of your new found geo targeted adult traffic.

    Article written by Lee

  • Using SSI For Auto Updates

    Date: 2011.02.24 | Category: WebDesign | Response: 0

    We all realize the benefits of being able to save time when building sites so, I got into thinking, how can I make my sites look as if they are continually updated without the need to go in and update them manually? Enter the world of SSI.

    SSI is actually a nifty little tool, not only can you include files from a central location but, you can include them at specific times of the day, days of the week or even months of the year, very handy indeed if you are building any type of site that needs updating periodically.

    Once the main burst of work has been completed you can pretty much use the same files over and over again to help you out.

    So onto the auto updating SSI, the following SSI coding will enable you to update a page or pages based on which day of the month it is. It will check the day the page has been accessed and display the relevant information again, this is a handy thing to have should your sponsor be running a promotion over several days, all you need to do is update a selection of SSI files and all of your sites are updated instantly.

    <!–#config timefmt=”%d”–>
    <!–#include virtual=”/yourdirectory/$DATE_LOCAL.txt”–>

    What you need to do is create 31 text files named 01.txt right the way through to 31.txt take the SSI call above and edit the location of the SSI files on your server, you may like to have a central folder named /SSI/ for this purpose so the location would be changed to /domain.com/SSI/$DATE_LOCAL.txt

    I the 31 files you created you could have a table ad with eight of your sponsors links, an article in each one or even just a simple text link, anything that you may want to update can be included in these files.

    As I mentioned above you can base the time, date and even month of rotation to whatever you like to alter how the files are rotated and ultimately viewed on the web you should change the %d in the timefmt field to one of the following:

    %d : Day of the month requires 31 files named 01.txt to 31.txt
    %w : Day of the week requires 7 files named 0.txt to 6.txt
    %j : Day of the year requires 365 files named 001.txt to 365.txt
    %u : The week of the year requires 52 files named 00.txt to 53.txt
    %m : The month of the year requires 12 files named 01.txt to 12.txt
    %H : Hour of the day requires 24 files named 00.txt to 23.txt
    %M : Minute of the hour requires 60 files named 00.txt to 59.txt

    As you can see from the above there really are no limitations to the uses of updating using SSI and, apart fro the relative ease of use and the time saved using them should one sponsor not be converting for you all you need to do to swap sponsors is alter your central set of SSI files and you have instantly changed sponsors over all of your sites.

    Article written by Lee

  • Thumbnail Preview TGPs And The Gay Market Place

    Date: 2011.02.24 | Category: TGP | Response: 0

    One of the latest crazes to hit the gay adult market from a webmasters point of view is that of the thumbnail preview TGP and, more surprisingly than this is the fact that this new breed of gay adult TGP seems to attract more traffic than the standard format TGP ever did so, what is a thumbnail preview TGP and just how do you go about making one of your own? This is what we will investigate in this article.

    Thumbnail Preview TGP Basics.

    A thumbnail preview TGP is just as the name suggests, a standard TGP with one main difference, the TGP itself doesn’t list gallery descriptions rather a small preview image of the content placed on each of the galleries submitted. This thumbnail preview is usually size between 100×100 pixels and 60×60 pixels in dimension however, the thumbnail preview size can be determined by the webmaster owning the TGP.

    How Do I Start My Own Thumbnail Preview TGP?

    In order to start your own thumbnail preview TGP you will need a couple of things, first and foremost, a domain name to run it on, the current trend in the gay marketplace is to name your TGP something short, memorable and, well, brand able so, the domain name you choose for your TGP should take all of these aspects into consideration. The next thing you will need in order to run your own gay thumbnail preview TGP will be the script which you use to manage the TGP itself, for this purpose I would highly recommend Autogallery MySQL from http://www.jmbsoft.com it is affordable and, easy to maintain which is a must if you are wanting to run a sizable TGP. One other thing that you may also like to consider investing in for your thumbnail preview TGP is a design, in fact, most of the ‘good’ thumbnail preview TGPs whether they are focused in the straight or gay market, have a clean, almost pay site quality design aspect to them. Of course, you do not need to keep up with the joneses however, if it works for other people, then why not see if it will work for you also?

    Thumbnail TGP Structure.

    So you now have a domain and have purchased the script and / or design that you want to use on your thumbnail preview TGP what next? Well first things are first, you should take a look at some of the other sites that currently exist and see how they do things, find out what things you feel they are doing wrong and, capitalize on that.

    You should also make some decisions now as to the look and feel you want your thumbnail preview TGP to have, how many galleries are you going to list on the front page each day? Will you be utilizing the archives feature of your TGP script? What limitations do you want to put on submissions from other webmasters? These are all aspects of running a TGP that you need to think of prior to opening your site up for general submissions.

    In general however, you will find that most thumbnail preview TGP sites will have roughly 100 thumbnail images on their front page of the site with any additional galleries being listed in their archives section again, you should decide on how you want to maintain your own site.

    Getting Traffic To Your Thumbnail Preview TGP.

    Now you have hopefully set your thumbnail preview TGP live you need to do one final step in making the TGP itself a huge success, get the traffic flowing, one of the best ways to do this, as with any other type of site is to ask your friends and associates to trade traffic with your site however, should this not be an option then you should use more conventional methods such as submitting galleries to other TGP sites ensuring that you use a recip to your TGP on each gallery as well as utilizing other forms of traffic such as cheap brokered traffic, top lists, web rings and, even counters, within a month or so you will soon start to see a steady flow of new webmaster gallery submissions and, with each new submission comes more traffic and ultimately, more income from your site.

    Article written by Lee

  • Protecting Your HTML Code With JavaScript

    Date: 2011.02.24 | Category: Scripts, WebDesign | Response: 0

    We all know that source code theft is wrong and covered by copyright never the less some webmasters will inevitably try to steal the work that the honest ones amongst us create.

    Unfortunately, there is no sure fire way to stop people from stealing our HTML code but, we can make it hard for them.

    The following JavaScript coding, when placed in your <body> tag can make it harder for the opportunistic webmaster to steal your coding.

    Simply copy and paste everything below into your body tag and change the text in the var message=”” field.

    <!–Start Copy–>
    <SCRIPT language=”JavaScript”>
    <!–
    var message=”Copyright 2000 by Your Site. WARNING ! All content contained within this site is protected by copyright laws. Unauthorized use of our material is strictly prohibited.”;
    function click(e) {
    if (document.all) {
    if (event.button==2||event.button==3) {
    alert(message);
    return false;
    }
    }
    if (document.layers) {
    if (e.which == 3) {
    alert(message);
    return false;
    }
    }
    }
    if (document.layers) {
    document.captureEvents(Event.MOUSEDOWN);
    }
    document.onmousedown=click;
    // –>
    </SCRIPT>
    <!–End Copy–>

    Whilst this is not a sure fire way to stop the occurrence of HTML theft as mentioned already it will deter those webmasters who perhaps were there for the simplistic reason of viewing your source code.

    Article written by Lee

Premium Sponsors















Categories

Site Links