// (c) 2008 Kyle Reed
// American Made Products.com

// shows the menu div
function showPopup(popId) {
 
    var elm = document.getElementById(popId);
 
    if(elm) {
        elm.style.display = 'block';
    } else {
        alert('No object: ' + popId);
    }
 
    return true;
}

// hides the menu div
function hidePopup(popId) {
 
    var elm = document.getElementById(popId);
 
    if(elm) {
        elm.style.display = 'none';
    } else {
        alert('No object: ' + popId);
    }
 
    return true;
}

