﻿function shareTool() {
    FB.init({ appId: '143236189019978', status: true,
        cookie: true, xfbml: true
    });
    FB.ui(
           {
               method: 'stream.publish',
               display: 'popup',
               message: ' ',
               attachment: {
                   name: 'Get your personalized skin care regimen - and challenge what\'s possible.',
                   caption: '',
                   description: 'Just answer a few questions at OlayForYou.com and we\'ll recommend a skin care regimen that\'s perfect for you.',
                   media: [{
                       'type': 'image',
                       'src': 'http://db.igodigital.com/st/olay/images/olayfy-fb.png',
                       'href': 'http://www.olayforyou.com'
                        }],
                       href: 'http://www.olayforyou.com'
                   },
                   action_links: [
               { text: 'Code', href: 'http://www.olayforyou.com' }
             ],
                   user_message_prompt: 'Tell your friends about OlayForYou.com'
               },
           function(response) {
               //Response event goes here...            
           }
         );
       }

function toolConversion(URL) {

    $.get("../_updateCart.ashx", { action: 'conversion' }, function(data) {
        //alert(data);
        window.document.location = URL;
    });

}

function logEvent(EventType) {

    $.get("../_logEvent.ashx", { EventType: EventType }, function(data) {
        //alert(data);
    });

}
