Search posterous

Search all posts and users. Type a name, type a favorite song title, whatever! See what comes up.
  

More posterous blogs











More recommended blogs »

Here are posterous posts filed under center...

seekr says...

This year's World Press Photo winner photos are on display at the South Bank Center, London.
-
.mario

Filed under: center

reifeltower says...

The Dead Center level - lots of sword and axe use... heads do roll!!

Filed under: center

sarikas.at says...

   
Click here to download:
Peugeot_Sony_Center_Berlin_tag.zip (1673 KB)

Filed under: Center

hamishogilvy says...

If you haven't read part 1, you should probably start there! http://blog.datalicious.com/call-center-tracking-using-omniture-site-cata

Where to begin setting this up? As with all analytics and tracking, there are many ways to approach the problem, but below is our preferred solution as it fits so easily with the existing online architecture. If call centre staff are indeed able to use a modified version of the online store, the steps below will slash wasted time, improve call to sale conversion as well as bring your phone and online tracking together into a single reporting view.

Step 1 - The basic link
Configure your call center software such that an answered phone call will trigger the opening of a URL. To avoid opening lots of new windows, you should give the window a name, if the name is the same, each call will trigger in the same window.

Step 2 - Where the magic happens
Call center software has access to lots of information, the number dialed, the callers number, who answered the call, the time the user has waited in the queue, any menu selections, the calls unique ID, etc. There is no limit to what is available. You need to look at all the information and decide what is relevant (both for tracking and sales optimisation). Once you've decided what is relevant, you need to pass this information in the URL triggered when a call is answered. Example below:

http://callcentre.example.com/redirect.php?cc=yes&caller=5551231234&dialed=1800123123&id=1234567890&queue=350&agent=samsmith

Step 3 - Now what?
So you've completed the most important step, you've passed all the key information seamlessly between two previously independent systems. Now it's time to use it. The redirect.php is a script written to deal with the information passed. This is not only for capture in Site Catalyst, but also for directing the Agent straight to the right product or content to save time. This happens effectively instantaneously.

Examples:
- Take the sales agent straight to the product page associated with the number dialed.
- Apply appropriate discounts based on known customer information
- Populate fields with customer information to save time

Step 4 - What about the tracking?
The redirect script will send the agent to the appropriate page with all the appropriate site catalyst data as URL parameters. You can then use the getQueryParam plugin to extract these parameters and direct them into the correct Site Catalyst variables.

Typically an Agent will sit on their computer all day, that's no good as the one session will stay alive. To start a new one in Omniture for each call, set the visitor ID to be equal to the unique ID of the call. This will ensure each call appears as a visit in your reports. Usually you would put this ID into an eVar as well, so you can use classifications to import additional data later.

To differentiate call centre traffic to the online traffic, set an eVar and persist it (you must have the get and persist plugin installed), this will allow you to break out call centre traffic with a vista rule later if required. All your Agents traffic will be marked.

Some information you'll want in eVars: Typically i would put the Agents name, the number dialed and any customer ID as a first start. Products, Events on the modified call center interface should follow the logic of online where possible, so they can be easily compared, ie checkout, order, registration, etc.

Before you know it, you'll have some very rich information on your call center. This is only the beginning though, some more advanced segmentation and targeting techniques will be discussed in part 3, along with data imports to close the information loop.

Filed under: center

hamishogilvy says...

Firstly you may be thinking, why track a call center with Site Catalyst? Initially it seems like a strange thing to do, hopefully after reading this article it won't seem as strange!

The motivation...

1. The invisible connection
Many businesses generate sales through both online and phone based transactions, most would think these two methods are relatively disconnected, but this is not always the case. Lots of customers struggle with the online payment process and happily pick up the phone if they see the option is available, some never get that far as they would never pay over the internet, but you may have already collected useful information online that could accelerate or potentially close a sale over the phone.

2. Apples and Apples
For compatibility with online sales systems, many call center staff applications are now built using web based (or compatible) technology. Conveniently this allows web based tracking techniques to work much like they do online. Seeing phone based purchases in the column next to online purchases for a given product makes sense, especially when campaigns have both online and phone based calls to action.

3. End to end reporting
The final key reason is that most call center analytics are disconnected from the actual sale data, so the rich information on which products were viewed and purchased is sadly lacking (unlike online purchase data in Site Catalyst). This is particularly frustrating if you want to relate product information and conversion ratios to each campaign phone number to calculate your ROI, or you want to know how John's "call to sale" ratio changes between 8-11am compared to 2-5pm.

All this may not sound like much, but in reality small tweaks make big differences. Being able to truly understand the link between online and offline transactions, along with being able to report them together in the same report, in almost real time can only be advantageous.

This post has tried to justify the reasons why you would want to try an integrate call center data into Site Catalyst, but it doesn't go into the details of how you would actually do so. That will follow in part 2. See part 2 here: http://blog.datalicious.com/call-center-tracking-using-omniture-site-cata-0

Filed under: center

Finne says...

 

You can start to look at some movies:

Just do a google for the filname, parts of it or all of it.


911-Mysteries_-_Demolitions-P1_-_DVD-Rip.avi

Painful_Deceptions.avi

Improbable.Collapse.2006.DVDRip.XViD - Sept 11 - 911 Conspiracy Documentary.avi
:
Loose Change 2nd Edition

Everybodys Got To Learn Sometime.avi

911_Revisited_2nd_ed_-_XViD.avi

911 In Plane Site - The Directors Cut.avi

9/11: Press For Truth


If you still belive the official report about what happend, you are not an objective person, either religious or just brainwashed to think that the Vestern goverments are peaceful.
United States of America have ca. 200 conflicts and wars in 250 years, what does that tell you?
You need to do something, to get an reactiion, and then come with the solution to the "problem".

Dont belive all you see on the news! Use Google an search for news from both sides, and you get a more objective picture.

Wake up and smell the coffie!

PEACE!

Filed under: center

Web Devs have been promised that vertical centering an element within the browser view port will be a part of CSS3. Until we see adoption by the browsers getting that perfectly centered element is still a pain.


Well, here's a little bit of code I use, I've tested it in FF, IE7 and Safari 4, on Windows. I'd appreciate your testing if you have a browser/OS combo not listed here.

So, the CSS is:

<style type="text/css">
html,body { margin:0; }
.position { width:100%; height:0; position:absolute; top:50%; overflow:visible;}
.content { width:20em; height:16em; display:block; margin: -8em auto 0 auto; text-align:left; border:4px solid #999; padding:1em; }
</style>

And the html:

<div class="position">
<div class="content">
<p>
<p>Your data, <strong>$data[name]</strong>, has been created.</p>
</div>
</div>

Notice we are only using two classes here. First with .position we make sure to absolutely position 50% from the top of the view port. We can set the height to 0 and overflow to visible.

Next, the .content, which will directly contain our centered content, is horizontally centered using margin-left and margin-right auto. We set the desired hight and width and then set margin-top to roughly 50% of the height. This pulls the vertical placement up above the .position layer, thus centering the block vertically.

Give it a try; let me know what you think.



Filed under: center

Fuzilah says...

Bob Marley is the center of the universe.

Filed under: Center

imageme says...

hope you enjoy this series of desktop background wallpapers.
 
these images are created for a 1.6:1 aspect ratio. the image resolution is 2560x1600, use a setting such as center or fit if you are using a different resolution. this series is comprised of images i like and personally use as my desktop backgrounds.

Filed under: center

A note on the Gaborik race: I've been told not to count out the Penguins and the Bruins.

Apparently there are rumors going around that the Oilers are looking at Lecavalier (though I haven't actually heard any). Anywhom, both sides deny that there have been any talks whatsoever.


The Blackhawks continue their search for help down the middle. Antropov and Spezza join the previously rumored Nylander as possible contestants.


The Flyers a shopping at least three players. Lupul, Knuble, and Upshall are rumored to be on top of their list. They'd also like to bring in a well-rounded defenseman, which they could definitely use, I say.
With Briere out for a few more weeks with that nerve entrapment, though, they've got a little more time to make a deal.


There have recently been rumors about the Ducks possibly trading Chris Pronger. I've been told not to believe them and to look more at Francois Beauchemin instead. Contract talks with the injured D-man have not been going well. I personally think that the Pronger rumors are nothing more than speculation, anyway.


There are a few teams said to have interest in Martin Gerber, should the Senators bring him back through Re-Entry Waivers. Calgary and Colorado are two of them. I'm sure the Islanders are interested as well.


A source has told me that he believes that the Avalanche will be unloading a defensemen by the deadline, also. Possible names discussed are Brett Clark, Jordan Leopold, and Ruslan Salei.


Lots of music in the absence of competitive hockey...
Jeff Kollman "Into the Unknown"
Thought Chamber "Angular Perception"
Unearth "The Oncoming Storm"
Bill Majoros "Trajectories"
T.D. Clark "Perspective"
The Time "Ice Cream Castle"
Prince "Purple Rain"

 

Filed under: center