function pgpopup(pic,title) {
  var nwin = window.open("","","status=no,scrollbars=no,toolbar=no,resizable=no");
  nwin.document.write("<html><head><title>"+title+"</title>"
  + "<link rel='STYLESHEET' type='text/css' href='../default.css'></head>"
  + "<body><img name='largeimg' src='images/"
  + pic + "' onLoad = 'window.resizeBy(largeimg.width - document.body.clientWidth, largeimg.height - document.body.clientHeight)'></body></html>");
}

function pgpopup1(pic,title,w,h) {
  var nwin = window.open("","","status=no,scrollbars=no,toolbar=no,resizable=no,width="+w+",height="+h+"");
  nwin.document.write("<html><head><title>"+title+"</title>"
  + "<link rel='STYLESHEET' type='text/css' href='../default.css'></head>"
  + "<body><img name='largeimg' src='images/"
  + pic + "'></body></html>");
}

function pgpopup2(pic,title,w,h) {
  var nwin = window.open("","","status=no,scrollbars=yes,toolbar=no,resizable=no,width="+w+",height="+h+"");
  nwin.document.write("<html><head><title>"+title+"</title>"
  + "<link rel='STYLESHEET' type='text/css' href='../default.css'></head>"
  + "<body><img name='largeimg' src='images/"
  + pic + "'></body></html>");
}