/* popup window */var forcedRefresh = true;var alreadyopen = new Array();var newwin = new Array();function openCenteredWindow(theURL, winName, features, w, h){  var winl = parseInt((screen.width - w - 10) / 2);  var wint = parseInt((screen.height - h - 29) / 2);  openWindow(theURL, winName, features + ',height=' + h + ',width=' + w + ',top=' + wint + ',left=' + winl);}function openWindow(theURL, winName, features){  if(forcedRefresh == false && alreadyopen[winName] && !newwin[winName].closed){    newwin[winName].focus();  }  else{    alreadyopen[winName] = 1;	    newwin[winName] = window.open(theURL, winName, features);    newwin[winName].focus();  }}function openImage(src, width, height){  openCenteredWindow('/include/display_image.html?src=' + src + '&width=' + width + '&height=' + height,'imgwin','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no', width + 56, height + 100);}