
<!--
function popup(link,winwidth,winheight,xposi,yposi) {
  imgs = window.open( link, 'imgs', 'width=' + winwidth + ',height=' + winheight + ',resizeable=yes,scrollbars=yes,toolbar=no,status=no,left=' + xposi + ',top=' + yposi);
  imgs.focus();
  }

function openiconwin(link) {
  var winwidth = 321;
  var winheight = 200;
  win = window.open( link, 'win', 'width=' + winwidth + ',height=' + winheight + ',scrollbars=no,toolbar=no,status=no,left=10,top=20');
  win.focus();
  }

function openmoreimgswin(link) {
  var winwidth = 462;
  var winheight = 400;
  imgs = window.open( link, 'imgs', 'width=' + winwidth + ',height=' + winheight + ',scrollbars=no,toolbar=no,status=no,left=297,top=20');
  imgs.focus();
  }

function opencontactwin(link) {
  var winwidth = 670;
  var winheight = 380;
  contactwin = window.open( link, 'contactwin', 'width=' + winwidth + ',height=' + winheight + ',scrollbars=no,toolbar=no,status=no,left=297,top=20');
  contactwin.focus();
  }

function openprintwin(link) {
  var winwidth = 670;
  var winheight = 470;
  contactwin = window.open( link, 'printwin', 'width=' + winwidth + ',height=' + winheight + ',scrollbars=yes,toolbar=no,status=no,left=100,top=20');
  contactwin.focus();
  }


//-->

