﻿function showProdSpec(distName,prodCode)
{

    // need to find tool tip as that is the prodCode
    if (distName != 'Please Choose...') {
        window.open('productspec.aspx?productCode=' + prodCode + '&DISTCODE=' + distName);
    }

}


function showRecipe(recipeLink)
{
    if(recipeLink!='')
        {
        window.open('/uploads/'+recipeLink );
        }
}