// open new window
function openPopup(file,theWidth,theHeight) {
	popup = window.open(file,'_blank','width='+theWidth+','+'height='+theHeight+',top=30,left=60,status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=1"'); 
	popup.focus(); }

// imagePopup
function imagePopup(image,title,width,height)
{
  popup = window.open("","",'resizable=1,width='+width+',height='+height+',scroll=no');

  with (popup)
  {
    popup.focus();
    document.open();
   document.write('<html><head><title>'+title+'</title>');
   document.write('<meta http-equiv=\"imagetoolbar\" content=\"no\">');
   document.write('</head>');
   document.write('<body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\" scroll=\"no\" class=\"picpop\">')
   document.write('<img src=\"'+image+'\" border=\"0\" alt=\"'+title+'\">')
   document.write('</body></html>')
   document.close();
  }
}
