wwepopimwin = null;
function wwepopwin(url,title,extra){
  if (wwepopimwin) {
    wwepopimwin.close();
  }
  wwepopimwin = window.open ("",title,extra);
  wwepopimwin.document.write("<html><head><title>");
  wwepopimwin.document.write("</title></head><body>");
  wwepopimwin.document.write('<img src="' + url + '" onclick="window.close();" alt="Click to Close">');
  wwepopimwin.document.write("Click image to close</body></html>\n");
  wwepopimwin.document.close();
  return;

}

function wweinit(){
 var links = document.links;
 for (var i = 0; i < links.length; i++){
  if (links[i].className == 'imgzoomable'){

   //links[i].onclick = function(){ window.open(this.href,"Image Zoom", 'width='+this.width + ',height='+this.height); return false; };
   //var linkHref = document.createTextNode(links[i].href);
   var zoomtext = document.createTextNode("Click to Enlarge");
   var linebrk = document.createElement("br");
   links[i].appendChild(linebrk);
   links[i].appendChild(zoomtext);

  }
 }
}

