function popup(popupfile,winheight,winwidth,scrolls)
  {
  open(popupfile+'&__toolbar=0',"PopupWindow","resizable=no,height=" + winheight + ",width=" + winwidth + ",scrollbars=" + scrolls);
  }

function showImage(path, width, height) 
  {
  win = window.open("/templates/image-popup.html?path="+path+"&__toolbar=0", "", "toolbar=0,location=0,status=0,menubar=0,resizable=1,scrollbars=0,width="+width+",height="+height);
  }

