function OfferBlockOver(nID)
{
    getObject('OfferTitle' + nID).style.color='#5b6d00'; 
    getObject('OfferLabel' + nID).style.backgroundColor='#5b6d00';
    getObject('OfferLabelImage' + nID).style.backgroundImage="url('../images/darkpointer.gif')";
}
function OfferBlockOut(nID)
{
    getObject('OfferTitle' + nID).style.color='#b7da00'; 
    getObject('OfferLabel' + nID).style.backgroundColor='#b7da00';
    getObject('OfferLabelImage' + nID).style.backgroundImage="url('../images/pointer.gif')";
}