// handle when a user clicks on the 
// name of a choice and wants to choose that item

function tepCheckRadioButton(RadioID){
    document.item_page.tepvariations[RadioID].checked=true;
}


// Selects the appropriate radio button
// above the set your own value

function handleGiftCardPriceSelect(customRadioID){
    document.item_page.tepvariations[customRadioID].checked=true;
}

// For the checkout confirmation page
// shows a small block warning that the shipping is being updated
function showUpdatingShipping(){
    document.getElementById('tepupdatingshipping').style.display = 'block';
}

