/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
/**
 * Comment
 */

/**
 * Comment
 */

function showProduct(productName, xPos, yPos) {
        $(productName).style.position = 'absolute';
        $(productName).style.top = (yPos+8) + 'px';
        $(productName).style.left = (xPos-235) + 'px';
        $(productName).style.display = 'block';
		$(productName).style.zIndex = 1;
}

function hideProduct(productName) {
        $(productName).style.display = 'none';
}
