function openZoom(imageName,imageWidth,imageHeight) {  // v4.01
	newWindow = window.open("","newWindow2","width="+imageWidth+",height="+imageHeight+",menubar=0,scrollbars=no,left=100,top=100");
	newWindow.document.open();
	newWindow.document.write('<html><title>Zoomansicht</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onClick="self.close()">'); 
	newWindow.document.write('<img src=\"'+imageName+'\" width='+imageWidth+' height='+imageHeight+' alt=\"Zum Schließen bitte klicken.">');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}

function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;
