
<!--
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;
// -->

function OpenWindow (Adresse) {
  MyWindow = window.open(Adresse, "Newsletter", "width=800,height=600,left=100,top=100,screenX=100,screenY=100,scrollbars=yes,resizable=yes");
  MyWindow.focus();
}