  function openWindow(url, name, w, h) {
    qwin = window.open(url,name,'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + w + ',height=' + h)
  }

  function openProducts(url, name, w, h) {
    qwin = window.open(url,name,'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=' + w + ',height=' + h)
  }

  function openPhoto(url, name, w, h) {
    qwin = window.open(url,name,'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' + w + ',height=' + h)
  }

    focus()
    function closewin() {
      self.close();
    }