// -----------------------------------------------------------------------------
// The script below used for displaying the product image in a pop up window
 function popupProductImage(mylink, windowname)
    {
      if (! window.focus)return true;
      var href;
      if (typeof(mylink) == 'string')
        href=mylink;
      else
        href=mylink.href;
      window.open(href, windowname, 'width=577,height=600,scrollbars=yes');
      return false;
    }
// -----------------------------------------------------------------------------
  