function open_image(path)
{
window.open('http://www.quincymacksales.com/inventory/viewimage.php?image='+path);
}

function show(id)
{
         if (document.getElementById(id).style.display == 'none')
         {
          document.getElementById(id).style.display = 'block';
         }
         else
         {
          document.getElementById(id).style.display = 'none';
         }
}