﻿<!-- 

function showNutritionPopup () {
    var element = top.document.getElementById("ProductOverlay")
    element.setAttribute("class", "ProductTransparentOverlayPopup");
    element.setAttribute("className", "ProductTransparentOverlayPopup");
    return false;
} 

function hideNutritionPopup () {
    var element = top.document.getElementById("ProductOverlay")
    element.setAttribute("class", "ProductTransparentOverlay");
    element.setAttribute("className", "ProductTransparentOverlay");
    return false;
} 

// -->


