Archive for November, 2009

How to Make Salesletters Interactive

Buy key on a white computer keyboard with clipping pathIn The Death of The Salesletter, I talked about hiding content so it could open up based on a user’s actions and thereby personalizing the salesletter, dynamically, on the fly.

You can hide content on the same sales page, making the page look shorter and less intimidating. And only desired content appears depending on a user’s choices.

What does using this tactic help to do?

In some cases, people break salesletters down into various pages, and add links to them in the letter. I don’t recommend this with long-copy salesletters. Traditionally, I recommend that the extra content opens up in a pop-up window instead, as to not distract.

But with this tactic, and other than the potential for personalization, which is its biggest benefit, it means that people reading a salesletter don’t have to be bothered by…

  1. Opening up annoying pop-ups;
  2. Being distracted such as opening another page, where you run the risk of them never coming back to the salesletter or, worse yet, come back but having lost the momentum they’ve gained by reading to that point;
  3. Or being intimidated by the appearance of a v-e-e-e-r-r-r-r-y long letter when they really don’t need all of it, which may lose readers before they even begin reading.

This process, called “toggling”, is done with a simple bit of javascript code and CSS.

Essentially, you insert the content you wish to hide between two <div></div> tags in the HTML code, and make it hidden using CSS (i.e., “cascading style sheet”).

When people click on a link, the content “unhides” and opens up on the same page. The link doesn’t have to be near the content. It can be anywhere on the same page.

Links are not the only triggers, either.

If the user performs any kind of action, whether it’s clicking a link or an image, scrolling to a specific area of the page, watching a video or audio, or pressing a form button (like a submit, checkbox or radio button, for example), it can still work the same.

Admittedly, I’ve seen some truly creative, out-of-this-world ways of applying this. I call them “smart salesletters.” But this tactic is just a very basic way of doing it.

And it won’t work on javascript-disabled browsers — I’ve seen slick Flash salesletters accomplish this better. But it will work on 98% of browsers out there, if not more.

Keep in mind, more and more browsers have pop-up blockers than they do have their javascript disabled. So this technique is the lesser of two evils.

Bottom line, toggling content as a basic way of interaction is really simple and possibly the easiest way to make readers interact with salesletters.

But granted, not everyone is a techie. I’m certainly not. So to help you, here’s some coding and a bit of a tutorial to help you. (And what follows is just a basic example I copied from some tutorials available online. There are tons of these out there.)

If you have a basic understanding of HTML, this will be relatively easy. First, add a bit of javascript code in the page’s HTML <head> tags (just before the closing </head> tag):

<script language="javascript">

function showHide(element) {

if (document.getElementById) {

// W3C standard

var style2 = document.getElementById(element).style;

style2.display = style2.display ? "" : "block";

}

else if (document.all) {

// old MSIE versions

var style2 = document.all[element].style;

style2.display = style2.display ? "" : "block";

}

else if (document.layers) {

// Netscape 4

var style2 = document.layers[element].style;

style2.display = style2.display ? "" : "block";

}

}

</script>

Then, you add the style inside the page’s head tags or in your CSS stylesheet, if you’re using an external CSS file to manage all your styles, which hides the content:

div#hiddenContent {display: none;}

If you’re adding it directly to the web page, place this in between your <style> tags, inside the <head> tags as well. So the whole thing would look something like this:

<script language="javascript">

function showHide(element) {

if (document.getElementById) {

// W3C standard

var style2 = document.getElementById(element).style;

style2.display = style2.display ? "" : "block";

}

else if (document.all) {

// old MSIE versions

var style2 = document.all[element].style;

style2.display = style2.display ? "" : "block";

}

else if (document.layers) {

// Netscape 4

var style2 = document.layers[element].style;

style2.display = style2.display ? "" : "block";

}

}

</script>

<style>

<!--

div#hiddenContent {display: none;}

-->

</style>

That’s the hardest part.

Next, what you simply do is wrap the content you want to hide around “div” tags, and call it a name. A name is labeled “ID.” In this case, I called it “hiddenContent” so that it matches the style in your stylesheet, above. For example:

<div id="hiddenContent">

Blah, blah, blah.

</div>

Next, you need to determine which link will toggle the content. You can add this to any link on the page, like a question for instance, or to a link that specifically asks for the content, such as “click here to view the testimonials.”

All you do is add a javascript call to the link that tells the page to “unhide” the content placed between the “div” tags earlier. For instance, the link should look like this:

<a href="javascript:showHide('hiddenContent');">

Click here

</a>

And that’s it! You’re done.

Now, what if the content is not directly requested in the link, and the content simply “opens up” when another link, for anything else, is clicked? Simple. All you need to do is add the “onClick” string to the link of your choice.

Let’s say there’s a link to a section of the same page called “whatever.” These care called “bookmarks.” When someone clicks on that link and jumps to that bookmark, the hidden content also opens up. Here’s an example:

<a onclick="javascript:showHide('hiddenContent');" href="#whatever">

Whatever

</a>

You can add this to any link, including graphics, pages, or sections.

Again, this is not limited to links. You can use it with different mouse actions, such as “onSubmit,” “onMouseOver,” “OnScroll,” and others. There’s a javascript call for pretty much every mouse action a reader takes.

Plus, hiding and unhiding content are not the only things you can do — you can make content fly in, change (that is, unhide some content while hiding others), appear on other pages (usually using cookies), and much, much more.

Nevertheless, here’s a great example of it in action.

An opt-in landing page I worked on for Brian Keith Voiles offers a free report. The landing page was already quite wordy, and initially we had a link to the table of contents, which opened up in a separate window.

So rather than push people away, we decided to toggle the content on the same page. Simply scoll down about halfway, below where the testimonials are, and click on the link to the table of contents. When you do, it opens up on the same page.

Neat, huh?

Now, what if you have multiple areas you wish to hide/unhide, individually, on the same page? You don’t want all the hidden pieces of content to unhide simultaneously.

There is a way to do this.

If you are adding more than one area, then each section you wish to hide must have its own “div” with its own unique name (or ID), and its own corresponding link, so that the scripts can do its magic to that specific block of content and not the others.

In the link that will expand or contract the specific content, simply pass each ID individually. That way, by clicking on a specific link, it opens its related content. For example:

<a href="javascript:showHide('hiddenContent_1')">

Click here

</a>

<div id="hiddenContent_1">

Piece of content #1

</div>

And then for the other…

<a href="javascript:showHide('hiddenContent_2')">

Click here

</a>

<div id="hiddenContent_2">

Piece of content #2

</div>

And don’t forget to add the “div” style and its appropriate ID in the stylesheet for each section (you can have as many as you wish). For example:

<style>

<!--

div#hiddenContent_1 {display: none;}

div#hiddenContent_2 {display: none;}

-->

</style>

That’s all there is to it.

But, what if you want all the toggled content to hide or unhide with a single gesture, such as clicking a single link? In other words, you click on one link, and it opens up several if not all the pieces of content simultaneously?

Simply, name your “div” sections as above. Then add this Javascript function in the “head” tags, which loops through all of the “div” tags on the same page, and calls the existing “showHide” function on each one that it finds:

function showHideAll() {

var cCommonDivName = "hiddenContent_";

var arrDivs = document.getElementsByTagName('div');

for(i = 0 ; i < arrDivs.length ; i++) {

if (arrDivs[ i ].id.match(cCommonDivName)) {

showHide(arrDivs[ i ].id);

}

}

}

So your HTML, in the “head” tags, would look something like this:

<script language="javascript">

function showHide(element) {

if (document.getElementById) {

// W3C standard

var style2 = document.getElementById(element).style;

style2.display = style2.display ? "" : "block";

}

else if (document.all) {

// old MSIE versions

var style2 = document.all[element].style;

style2.display = style2.display ? "" : "block";

}

else if (document.layers) {

// Netscape 4

var style2 = document.layers[element].style;

style2.display = style2.display ? "" : "block";

}

}

function showHideAll() {

var cCommonDivName = "hiddenContent_";

var arrDivs = document.getElementsByTagName('div');

for(i = 0 ; i < arrDivs.length ; i++) {

if (arrDivs[ i ].id.match(cCommonDivName)) {

showHide(arrDivs[ i ].id);

}

}

}

</script>

<style>

<!--

div#hiddenContent_1 {display: none;}

div#hiddenContent_2 {display: none;}

div#hiddenContent_3 {display: none;}

-->

</style>

</script>

And you can call the function like so:

<a href="javascript:showHideAll()">

Toggle everything

</a>

And don’t forget, you can also switch them, such as having the content visible and hide it once a user clicks on the link. Simply change the word “block” to “none” in the javascript, and “none” to “block” in the CSS’ “div” style.

Want to see multiple links in action?

My friend Frank Deardruff, the creator of the AskDatabase.com software (a service I highly recommend, too), uses this script for his “frequently asked questions” page.

Frank also uses it for lengthy testimonials on his Webmaster Crash Course letter. Scroll about halfway down to the testimonials section, and go to the last one in the bunch.

It’s from another friend of mine, professional photographer Mary Mazzullo, the lady with the camera in her hands. Click the “read more” link at the end of her testimonial.

(Mary, by the way, is not only the photographer we chose for our wedding, but also the one who took those new pictures of me. One of them is at the top of this website!)

Another great copywriter and friend of mine, Ray Edwards, uses it on a letter he wrote for Jack Canfield. He was able to fit the FAQs into the sales letter but still keep the letter feeling “lighter” on copy. (Just click in the “FAQs” link at the top.)

Aside from toggling testimonials, FAQs, and wordy blocks of content, you can use this technique in various ways. For example, you can do it with videos. If the video starts playing automatically, then the video will only start playing as the video opens up.

You will likely see more and more of this as time goes by. So keep your eyes peeled!

The Michel Fortin Blog.

.

Other Related Posts



Believe in Yourself & Explode Your Downline?

Product and Services Sell When You are “Passionate” and “Believe in Yourself”

One of the greatest challenges Independent Business Owners or (IBO) and Associates need to overcome in a network marketing program is the ability to retain your downline or business partners. Many people think a network marketing program means huge incomes and little work, which is why the turnover rate in multi level marketing companies is higher than any other industry. Another contributing factor may be that the buy in for most MLM opportunities is relatively inexpensive in comparison to what it cost to start a business or purchasing a franchise.  While people have many reasons for walking away from a great business opportunity the most common reason for people is that something better comes along that looks easier and seems to require less work than building an organization. The Grass is Always Greener.  But think about this for just a moment.  What is it that first caught your eye and stirred into flame the initial excitement that you felt about a particular product or service? Perhaps it was the exquisite copy or video presentation.  Or more than likely, it was the person presenting or their level of enthusiasm and conviction that came across in that ad copy or video.  What Really Sells is a person’s ability to communicate effectively, while believing in them self with a heartfelt’ confidence. With the right kind of leadership training, organizational management and marketing system, you too could become a successful leader.

Several times a year there is a new network marketing opportunity, (often promoted as still being in “Pre-Launch”) that comes out with the claim to be the best with a new and improved compensation plan. Every new product that is introduced is made available on the internet and in order to get this product to the consumer distributors are needed. After potential distributors understand the way network marketing works they often lose their interest and move on to programs that claim to take less  working time and give you more opportunities to get rich overnight. We are all familiar with the old adage: Nothing for Nothing!  However there are a hand-full of Network Marketing companies that have managed to stay around for decades.  What is their secret and why do people continue to flock to them?  Network Marketing Companies like Amway, Mary Kay, Avon, Send Out Cards (SOC), and Prepaid Legal Services have stood the test of time.  Although belly to belly marketing continues to sustain them, these companies are Network Marketing landmarks and maintain their relevance by remaking themselves through adaptations and embracing new marketing strategies that keep them in the running.  But we must never forget that at the core of these veteran enterprises are the quality and integrity of their products, services and a proven System to market them effectively on line or off line.

Core Commitment: Those who have or utilize a “System” stand a better chance of beating the odds of failing or giving up or joining the 95% of those who do not succeed. Although challenging, it is a real possibility for you to be totally successful in building personal wealth for you and your family as a network marketer while working from home so long as you have a core commitment to work ‘hard’ and work ‘smart.’ In addition to having a good work ethic, successful entrepreneurs have a formula for success that has worked for them time after time no matter what the application or industry. Successful marketers on the internet make use of a “marketing system” or “funnel” to attract pre-qualified leads and prospects.

Don’t panic if you miss the deadline to get in on the ground floor of a business opportunity. The odds are that in another six months a new and more improved product will come out and you can get in on the ground floor of this product or as stated above, you can do your due diligence and research companies like Send Out Cards or  Prepaid Legal Services who have been around for over thirty five years. No matter which opportunity you choose to pursue, you have to believe in your self and what you are selling in order to be successful with a network marketing system. If you personally use the product or service then it also pays dividends since you can offer first hand testimonials to your potential customers. After customers start to use the product then you can invite them to join the network, even if the only reason is to buy the product at wholesale next time they need it. Eventually the person may see the benefit of the network marketing opportunity and sell their own customers in turn on the idea of becoming a distributor while also building your downline sales. It can work by simply buying into a network marketing downline for the purpose of making money, but the more you invest in your self and demonstrate a genuine interest in a product, the more effort you will expend. It is only after you free yourself from limiting beliefs and discover the power leveraging your time, that you will become a living witness for other distributors and will help you to work harder and contact more people so that you will stay involved in sales, recruiting and personal development. This is why you must first believe in your self to see massive results and explode your downline and product sales.

My name is Michael Barrett and I am a Prepaid Legal Associate & Internet Marketing Consultant

Michael Barrett is an Internet Marketer, Entrepreneur and Team Leader & Trainer for Prepaid Legal Services and online Marketing Strategies. To learn more about Michael Barrett and additional training resources Click Here

The Greatest Marketing Secret of All Time

InterviewI wrote this article way back in 1998. It seems to have made a resurgence, especially with today’s economy. So I said to myself, “Why not republish it?” So here it is. Enjoy!

If there is something about which I’m pretty adamant, it’s the idea of attracting qualified prospects who are willing to do business with you. And this involves many different things.

Positioning is one of them. In fact, it has been one of my favorite marketing concepts for this very reason.

However, this fundamental magnetism is not only based on pure marketing practices or strategies. It also involves something at a much deeper level that is far more effective than any other marketing tool or process in existence.

This “thing” to which I am referring is, I believe, the most important marketing secret I can ever teach you — and it’s far from being a secret at all. It is considered as one simply because it is often neglected or ignored by many marketers and businesspeople.

What is this “secret” that’s so elusive?

Before I divulge it to you, I must first admit that it upsets me terribly to see when people tend to scoff their most valuable marketing assets. No, I’m not referring to salespeople or promotional activities. I’m not referring to prospects or clients, either.

I’m referring to love and passion.

The love they have for what they do, what they offer, and who they serve.

(Or the love they should have, anyway.)

Jack Trout and Al Ries, the fathers of positioning, once wrote: “Marketing is not a battle of products, but of perceptions.” Like it or not, marketing really is all about perception.

When I first started out in business, my mentor once told me something similar. He said, “Perceived truth is more powerful than truth itself.” Little did he know how this one statement affected me — and how it literally changed the way I look at business.

My business. My products. And particularly, my clients.

If people perceive doing business with you has an implicit added value, especially when compared to your competitors fiercely fighting for your market’s attention, you will often end up with their confidence, their business, and their loyalty as a result.

Of course, there are numerous ways you can add value to your business. Beyond applying fundamental marketing practices, you can and should find new and unique ways to differentiate yourself, increase your exposure, and promote your business.

But to me, the best marketing doesn’t rely on tactics.

To me, the most effective way to communicate added value is through the genuine, sincere, and passionate zest you have for what you do and the clients you serve.

People have a tendency to gravitate toward other people who love what they do — their enthusiasm, charisma, and authentic desire to serve others are instantly communicated through their actions and particularly their marketing efforts. No matter what they are.

Sadly, however, the marketplace is filled with so many people who jump into business for one sole purpose: Money. Granted, the economy might be to blame. But is it, really?

People work for a pension instead of a passion. Entrepreneurs are so profit-minded that they fail to enjoy the process. Marketers focus on how many sales they can achieve, but then wonder why they have to keep repeating the process to sustain their businesses.

I believe the real secret to success lies much deeper. In fact, the great mythologist, Joseph Campbell, said it best when he said that old cliché decades ago.

“Follow your bliss.”

But that saying is a lot older than you think. In fact, it was in 500 B.C. when Chinese sage Confucius said: “Do what you love and you’ll never have to work a day in your life.”

Since then, author Marsha Sinetar wrote: “Do what you love and the money will follow.” In his book, “Life 101,” Peter McWilliams claimed: “Do what you love and the necessary resources will follow.” I’ve read all those books and I agree with all of them.

However, I believe this concept can also be applied to business. That’s why I say…

“Do what you love and the business will follow.”

That’s the greatest marketing secret of all time. It’s to do what you love or to love what you do. And if you don’t love what you do, then find it. Make that your bliss.

As Jim Rohn once said, “If you don’t like where you are, then change it! You’re not a tree.” (And “where you are” may not always be limited to a physical location, either.)

Doing what one loves is a fundamental marketing process.

For example, when you deal with two people competing for your business, and if one of them has the “fire burning in their belly” (a genuine passion for what that person does), then how much more willing will you be to do business with that person than the other?

How much more believable and credible will that person be compared to the other? And most important, how much more value will that person bring to the table than the other?

Enough said.

People who love what they do generate far more word-of-mouth advertising. In subtle ways, they communicate that they are experts, that they are interested more in your needs than in your money, and that they will go out of their way to please you.

They develop far more enriching, rewarding, and superior customer relationships — let alone fans, referral-sources, and advocates for you, your products, and your business.

Entrepreneurialism has increased in fervor these days, and that’s good. But as a result, the hypercompetitive nature of the marketplace will in turn increase the demand for more uniqueness, more competitive value, and greater customer service.

However, if you do what you love or love what you do, your passion will communicate all of those things combined. It will come naturally and, I daresay, seemingly effortlessly.

Just as people choose to work in jobs they hate, many will choose a business or an endeavor that gives them absolutely no sense of purpose. They do it just for the money.

Workers will attempt to earn a living and do so with retirement in mind. Similarly, many entrepreneurs will start a business with the mere thought of financial independence.

In either case, they are anxiously awaiting those golden years when they will finally be able to start enjoying their lives. (The funny part is, the future is guaranteed to no one. So the key is to enjoy it now, not later. Because later may never come.)

But don’t confuse “enjoyment” with “love.” Doing what you love doesn’t always mean enjoying what you love. It does take work. Often, work you might not enjoy.

However, if your goal is to focus on creating a successful business, then do it at the service of others, not at the expense of others. Do what you love, and the business will follow. Love the people you serve, and the customers will follow. That’s the key.

Needless to say, if you do what you love in a business you enjoy, you will not only make money as a natural byproduct but also enjoy much happiness, satisfaction, joy, inner peace, and of all things, security in the process. And that’s what we really want, isn’t it?

Ultimately, your love will emanate in all that you do. You will naturally attract more business by the sheer fact that your passion is also communicating that you are offering the best solution to their problems. That solution is… you!

The Michel Fortin Blog.

.

Other Related Posts



Crowdsource Your Way to Success

headlineoptincrowd 150x150 Crowdsource Your Way to SuccessIf you ever wondered how to outsource your work using new and creative ways that get it done faster, cheaper, better, and ethically, too, then you need to watch this video.

Called “crowdsourcing,” this relatively new outsourcing technique — I say “relatively,” as the term may be new but the technique is as old as outsourcing itself — enables you to cull specific skills from the public at large.

Often, for little to no cost.

Whether you’re outsourcing already, planning on doing so, or just want to save time and money, this is for you. Crowdsourcing also allows you to bypass freelance bidding sites that can turn out to be expensive and risky, often with less than desirable results.

This two-hour training video is completely free.

In it, Sylvie exposes some of the best-kept secrets to get stuff done. Some of which have never been revealed until now. It was originally recorded from a private online webinar to our Success Chef students, but we’re making it available for the first time.

The video might be free, but you must register to watch it, as we highlight Success Chef University in the backend because that’s where the video comes from. However, you get immediate access to this video on the next page. You can unsubscribe easily, anytime.

Click here to watch this amazing video.

The Michel Fortin Blog.

.

Other Related Posts



Writing a Press Release to Get More Business

Dustin Cannon

Has your business been effected by the economy?  Do you find yourself cutting back on your advertising to save money?  Unfortunately, a lot of business owners are doing the same thing.  Eliminating your marketing efforts, however, will only effect your business more.  Instead, take advantage of a free advertising opportunity.  Press release distribution can help you to get more business and is really a simple solution to your problem.

Writing a press release will not cost you anything.   You simply write it and submit it to an press release distribution site.  From there, your release will be viewed by reporters and writers.   They will determine if they want to write something about your release or not.  In other words, they get to determine if your release is newsworthy enough for them to want to write about.

This is why that you must write a release that is not only newsworthy, but one that is interesting enough to be picked up by the reporters.  If you only submit releases that are not really newsworthy, they will eventually just skip by anything that has been submitted by you.

Press releases can be a great way to get your business noticed, but you must have something to announce.  It may be that your business has planned a customer appreciation day, where you will be offering free samples, discounts on your products, and free food.  This is a newsworthy item and would be picked up by reporters in your area.  They will then do a write up about your business and it will get put both online and in your local newspapers.

With the current condition of the economy, the biggest mistake you can make is not promoting your business.  Now is the time to take advantage of this free marketing and get your business noticed and increase your sales.,

 Page 3 of 3 « 1  2  3 
Powered by Yahoo! Answers

SEO Powered By SEOPressor