
MENUADDBID =
"<div id=\"menuaddbid\">\
    <a class=\"close\" href=\"#\">X</a>\
    <h5>Please select your preferred option</h5>\
    <ul>\
        <li class=\"first\"><p><strong>Absentee Bid</strong><br />Leave your maximum bid and P4 will bid for you</p><p><a href=\"/user/addabsentbid/auction/{AUCTION}/lot/{LOT}/\"><strong>Place an Absentee Bid</strong></a></p></li>\
        <li><p><strong>P4LiveBid</strong><br />Bid and watch the auction room in realtime</p><p><a href=\"/calendar/p4livebidsignup/id/{AUCTION}/\"><strong>Sign-up for P4LiveBid</strong></a></p></li>\
    </ul>\
    <p class=\"small\">All bids are subject to P4 Terms and Conditions of sale.</p>\
</div>";


function fAddBid(el,tipo,leilao,lote) {
    p=$(el).offset();
    if(tipo.length==1) {
        if (tipo[0]=='REG') {
            location.href='/user/addbid/auction/'+leilao+'/lot/'+lote+'/';
            return false;
        } else if (tipo[0]=='ABS') {
            location.href='/user/addabsentbid/auction/'+leilao+'/lot/'+lote+'/';
            return false;
        }
    }
    tooltip(p,leilao,lote);
    return false;
}

function tooltip(p,leilao,lote){
	xOffset = 0;yOffset =0;
    $('#menuaddbid').remove();
    s=MENUADDBID.replace(/{AUCTION}/g,leilao);
    s=s.replace(/{LOT}/g,lote);
	$('body').append(s);
    $('#menuaddbid').css({'left':p.left,'top':p.top+24});
    $('#menuaddbid a.close').click(function(){
        $('#menuaddbid').remove();
        return false;
    });
}
