var APurl = 'http://www.vintagetoysauctions.com';

addCSS();
display(getUCP());

function getUCP()
{
    var script = document.getElementById('VTAScript').src;    
    var upos = script.indexOf('#u=') + 1;    
    var ucp = script.substring(upos+2, script.length).split("&");
    var ucpLenght = ucp.length;
    
    if(ucpLenght < 1)
    {
        ucp = ['', '', ''];
    }
    else if(ucpLenght == 1)
    {
        ucp[1] = '';
        ucp[2] = '';
    }
    else if(ucpLenght == 2)
    {
        ucp[1] = ucp[1].substring(2, ucp[1].length);
        ucp[2] = '';
    }
    else
    {
        ucp[1] = ucp[1].substring(2, ucp[1].length);
        ucp[2] = ucp[2].substring(2, ucp[2].length);
    }
    
    return ucp;
}

function addCSS()
{
    var head = document.getElementsByTagName('head')[0];
    var link = document.createElement('link');

    link.rel = 'stylesheet';
    link.href = APurl + '/TopSite/button.css';
    head.appendChild(link);
}

function display(ucp)
{
    var VTAbutton = document.getElementById('vintagetoysauctionsTopSite');
    var cURL = ucp[1] != '' ? '/' + ucp[1] + '.html' : '';
    var pURL = ucp[2] != '' ? '/' + ucp[2] + '.html' : '';

    VTAbutton.style.position = 'relative';
    VTAbutton.style.width = '100%';
    VTAbutton.style.height = '60px';
    
    VTAbutton.innerHTML =
          '<div class="APContainer">'
        +   '<div class="APPic">'
        +     '<a href="' + APurl + '">'
        +       '<img src="' + APurl + '/TopSite/button.php?u=' + ucp[0] + '&c=' + ucp[1] + '" class="APimg1" /></a>'
        +     '<a href="' + APurl + cURL + '">'
        +       '<img src="' + APurl + '/TopSite/buttonName.php?c=' + ucp[1] + '" class="APimg2" /></a>'
        +     '<a href="' + APurl + pURL + '">'
        +       '<img src="' + APurl + '/TopSite/images/vintagetoys.png" class="APimg3" /></a>'
        +   '</div>'
        +   '<div class="APClear"></div>'
        + '</div>';
}
