function showProductDescription()
{
    document.getElementById('product_description').style.display = 'block';
    document.getElementById('product_options').style.display = 'none';
}
function showProductOptions()
{
    document.getElementById('product_description').style.display = 'none';
    document.getElementById('product_options').style.display = 'block';
}
