﻿function ShowProductMsg(child) {
    var theChild = null;
    var parentChildren = child.parentNode.childNodes;
    for (var i = 0; i < parentChildren.length; i++) {
        if (parentChildren[i].id == 'content') {
            theChild = parentChildren.item(i);
            break;
        }
    }
    theChild.style.position = 'absolute';
    theChild.style.top = child.parentNode.style.top;
    theChild.style.left = child.parentNode.style.left;
    theChild.className = '';
    theChild.style.width = '28em';
    theChild.style.height = '15em';
    theChild.style.padding = '0.5em';
    theChild.style.background = '#fef6ac';
    theChild.style.overflow = 'Scroll';
}
function HideProductMsg(child) {
    var theChild = null;
    var parentChildren = child.parentNode.childNodes;
    for (var i = 0; i < parentChildren.length; i++) {
        if (parentChildren[i].id == 'content') {
            theChild = parentChildren.item(i);
            break;
        }
    }
    theChild.style.position = 'relative';
    theChild.style.top = '1';
    theChild.style.left = '1';
    theChild.className = 'hide';
    theChild.style.width = '0';
    theChild.style.height = '0';
}