﻿addLoadEvent(AddDotNetKicks);

function addLoadEvent(fn)
{
    if (window.addEventListener)
        window.addEventListener('load', fn, false)
    else if (window.attachEvent)
        window.attachEvent('onload', fn);
}

function AddDotNetKicks()
{
    var insertLocation = document.getElementById('postToolbar');
    if(insertLocation)
    {
        var currentPageUrl = document.location.protocol + "//" + document.location.host + document.location.pathname;
        var dotnetkicksLink = document.createElement('a');
        dotnetkicksLink.href = 'http://www.dotnetkicks.com/kick/?url=' + currentPageUrl;
        var dotnetkicksImg = document.createElement('IMG');
        dotnetkicksImg.src = 'http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=' + currentPageUrl;
        dotnetkicksImg.border = 0;
        dotnetkicksLink.appendChild(dotnetkicksImg);
        insertLocation.appendChild(dotnetkicksLink);
    }
}