
  function viewProduct(id){
    jQuery("#"+id).show();
  }
  
  function closeProduct(id){
    jQuery("#"+id).hide();
  }

