﻿var _req = null;

function showbasket()
{
    
    obj = $get('basket_div');
    basket_link = $get('basketlink');
    
    var bounds = Sys.UI.DomElement.getBounds(basket_link);
    
    obj.style.display = 'block';
    
    obj.style.top = (bounds.y +10) + 'px';
    obj.style.left = (bounds.x) + bounds.width - 130 + 'px';
    
    
}

function hidebasket()
{
    obj = $get('basket_div');
    obj.style.display = 'none';
}